@extends('user.support.layout') @section('title', 'Closed Support Tickets') @section('content')

Closed Support Tickets

View all your resolved or closed support requests here.

@forelse($tickets as $ticket) @empty @endforelse
Ticket No Subject Issue Type Assigned To Status Created At Action
{{ $ticket->st_no }} {{ $ticket->st_subject }} {{ $ticket->issueType->sit_name ?? '—' }} {{ $ticket->assignedTo->ul_name ?? 'Unassigned' }} {{ $ticket->st_status }} {{ $ticket->created_at->format('d M Y h:i A') }} View
No closed tickets found.
@endsection