@extends('user.layouts.app', ['title' => 'Tickets']) @push('head') @endpush @section('content')
Tools / Tickets

Tickets Log

Review support requests, track last replies, and open a new ticket from the same page.

Total Tickets
{{ $tickets->count() }}
Open Tickets
{{ $openTickets }}
Pending Tickets
{{ $pendingTickets }}
Tickets Log
Support subjects with latest response status
@foreach ($tickets as $ticket) @php $statusClass = match ($ticket['status']) { 'Resolved' => 'success', 'Pending' => 'warning', default => 'primary', }; @endphp @endforeach
Subject Status Last Reply Action
{{ $ticket['subject'] }}
{{ $ticket['status'] }} {{ $ticket['last_reply'] }}
@foreach ($tickets as $ticket) @php $statusClass = match ($ticket['status']) { 'Resolved' => 'success', 'Pending' => 'warning', default => 'primary', }; @endphp
{{ $ticket['subject'] }}
{{ $ticket['status'] }}
Last Reply: {{ $ticket['last_reply'] }}
@endforeach
@endsection