@section('title') Support Tickets @endsection @section('breadcrumbs') {{ Breadcrumbs::render('tickets.index') }} @endsection
@if (count($tickets) > 0)
@foreach ($tickets as $ticket) @endforeach
ID Subject Category Priority Status Created Actions
#{{ $ticket->id }} {{ $ticket->subject }} {{ ucfirst($ticket->category) }} @if ($ticket->priority === 'high') High @elseif($ticket->priority === 'medium') Medium @else Low @endif @if ($ticket->status === 'open') Open @elseif($ticket->status === 'in_progress') In Progress @else Closed @endif {{ $ticket->created_at->diffForHumans() }} View
@else

No Support Tickets

Need help? Create a support ticket

Create Ticket
@endif