{{-- resources/views/restaurant/support/index.blade.php --}} @extends('layouts.restaurant') @section('title', 'Help & Support') @section('content')
Get help, view tickets, or contact our support team
| Ticket | Subject | Category | Priority | Status | Date | Actions |
|---|---|---|---|---|---|---|
| {{ $ticket->ticket_number }} |
{{ $ticket->subject }}
|
{{ ucfirst(str_replace('_', ' ', $ticket->category)) }} | @php $priorityColors = [ 'low' => 'bg-success', 'medium' => 'bg-info', 'high' => 'bg-warning', 'urgent' => 'bg-danger' ]; @endphp {{ ucfirst($ticket->priority) }} | @php $statusColors = [ 'open' => 'badge-warning', 'in_progress' => 'badge-info', 'resolved' => 'badge-success', 'closed' => 'badge-secondary' ]; @endphp {{ ucfirst(str_replace('_', ' ', $ticket->status)) }} | {{ $ticket->created_at->format('M d, Y') }} | |