{{ __('Support') }}

{{ __('Keep customer questions organized and assigned.') }}

{{ __('Reset') }}

{{ __('Ticket Directory') }}

{{ __('Showing') }} {{ $tickets->count() }} {{ __('of') }} {{ $tickets->total() }} {{ __('tickets.') }}

{{ __('Export CSV') }}
@forelse ($tickets as $ticket) @empty @endforelse
{{ __('Ticket') }} {{ __('Requester') }} {{ __('Priority') }} {{ __('Status') }} {{ __('Assignee') }} {{ __('Actions') }}

{{ $ticket->subject }}

{{ $ticket->ticket_number }}

{{ $ticket->requester_name }}

{{ $ticket->requester_email }}

{{ $priorities[$ticket->priority] ?? ucfirst($ticket->priority) }} {{ $statuses[$ticket->status] ?? ucfirst(str_replace('_', ' ', $ticket->status)) }} {{ $ticket->currentAssignment?->assignedTo?->name ?? __('Unassigned') }}
{{ __('View') }} {{ __('Edit') }}
@csrf @method('DELETE')

{{ __('Delete') }} {{ $ticket->subject }}?

{{ __('This action cannot be undone.') }}

{{ __('Cancel') }} {{ __('Delete') }}
{{ __('No tickets found.') }}
@forelse ($tickets as $ticket)

{{ $ticket->subject }}

{{ $ticket->ticket_number }}

{{ $statuses[$ticket->status] ?? ucfirst(str_replace('_', ' ', $ticket->status)) }}
{{ $ticket->requester_name }}
{{ $ticket->requester_email }}
{{ $priorities[$ticket->priority] ?? ucfirst($ticket->priority) }} {{ $ticket->currentAssignment?->assignedTo?->name ?? __('Unassigned') }}
@empty
{{ __('No tickets found.') }}
@endforelse
@csrf @method('DELETE')

{{ __('Delete selected tickets?') }}

You are about to remove 0 ticket(s).

{{ __('Cancel') }} {{ __('Delete') }}
@csrf

{{ __('Import Support Tickets') }}

{{ __('Upload a CSV file that matches the provided template.') }}

{{ __('Cancel') }} {{ __('Upload') }}
{{ $tickets->links() }}