@extends('layouts.admin') @section('title', 'Ticket Details') @section('content')
← Back to Tickets

{{ $ticket->title ?? 'Ticket' }}

Ticket #

{{ $ticket->ticket_number ?? $ticket->id }}

Priority

{{ ucfirst($ticket->priority ?? 'low') }}

Category

{{ ucwords(str_replace('_',' ', $ticket->category ?? '-')) }}

Status

{{ ucwords(str_replace('_',' ', $ticket->status ?? 'open')) }}

Description

{{ $ticket->description ?? '-' }}

Edit
@csrf @method('DELETE')

Add Reply

@csrf
@endsection