@extends('admin.layouts.app') @section('title', 'Support Tickets') @section('content')

Support Tickets

Manage and respond to user support requests.

Open Tickets {{ $counts['open'] }} Closed Tickets {{ $counts['closed'] }}
@forelse($tickets as $ticket) @empty @endforelse
Ticket Details Status Last Updated Actions
{{ $ticket->subject }} #{{ $ticket->ticket_number }} • Order #{{ $ticket->order->order_number ?? 'N/A' }}
{{ strtoupper(substr($ticket->user->name, 0, 1)) }}
{{ $ticket->user->name }}
@if($ticket->status === 'open') Open @else Closed @endif {{ $ticket->updated_at->diffForHumans() }}

No tickets found in this category.

@if($tickets->hasPages())
{{ $tickets->appends(['status' => $status])->links() }}
@endif
@endsection