@extends('layouts.admin') @section('title', 'Ticket #' . $ticket->id . ' Details') @section('content')
{{ $ticket->subject }}
Priority
{{ ucfirst($ticket->priority) }}
Category
{{ $ticket->category ?? 'N/A' }}
Created At
{{ $ticket->created_at->format('M d, Y H:i A') }}
Description
{{ $ticket->description }}
{{ $ticket->assignedTo?->name ?? 'Unassigned' }}
@php $admins = \App\Models\User::where('account_type', 'admin')->get(); @endphp