@extends('user.support.layout') @section('title', 'In-Progress Support Tickets') @section('content')

In-Progress Support Tickets

These tickets are currently being worked on by our support team.

@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 in-progress tickets found.
@endsection