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

🎫 Support Ticket Dashboard

{{-- Open Tickets --}} {{-- In Progress Tickets --}} {{-- Closed Tickets --}} {{-- Create New Ticket --}}
{{-- Recent tickets table --}}
Recent Tickets
@forelse($tickets ?? [] as $ticket) @empty @endforelse
# Subject Status Date
{{ $ticket->st_no }} {{ Str::limit($ticket->st_subject, 30) }} @if($ticket->st_status == 'Open') Open @elseif($ticket->st_status == 'In Progress') In Progress @elseif($ticket->st_status == 'Closed') Closed @endif {{ \Carbon\Carbon::parse($ticket->created_at)->format('d M Y') }}
No tickets found
@endsection