All Tickets

Total Tickets

{{$tickets->count()}}

{{--

17.32 % vs. previous month

--}}

Opened Tickets

{{$tickets->where('active',true)->count()}}

{{--

0.96 % vs. previous month

--}}

Closed Tickets

{{$tickets->where('active',false)->count()}}

{{--

3.87 % vs. previous month

--}}

Canceled Tickets

{{$tickets->where('status','cancelled')->count()}}

{{--

1.09 % vs. previous month

--}}
@php $count = 1; @endphp @foreach($tickets as $ticket) {{-- --}} @php $count++; @endphp @endforeach
Ticket No. Student Name Category Title Status State Created Action
{{$ticket->ticket_code ?? null}} {{$ticket->profile['first_name'] .' '. $ticket->profile['last_name'] ?? null}} {{$ticket->category ?? null}} {{$ticket->title ?? null}} @if($ticket->status == "pending") {{ucwords($ticket->status)}}@endif @if($ticket->status == "answered") {{ucwords($ticket->status)}}@endif @if($ticket->status == "cancelled") {{ucwords($ticket->status)}}@endif @if($ticket->active) Opened@endif @if(!$ticket->active) Closed@endif High{{$ticket->created_at ?? null}}
@foreach($tickets as $ticket) @endforeach
@include('layouts.admin.footer')