@extends('layouts.admin') @section('title', __('Support Tickets')) @section('page-title', __('Support Tickets')) @push('styles') @endpush @push('scripts') @endpush @section('content') @php $status = $filters['status'] ?? 'open'; @endphp
| {{ __('Ticket ID') }} | {{ __('Title') }} | {{ __('Customer') }} | {{ __('Status') }} | {{ __('Priority') }} | {{ __('Last update') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|
| #{{ $ticket->id }} |
{{ $ticket->subject }}
{{ $ticket->created_at?->format('M d, Y') }}
|
{{ $ticket->customer?->full_name ?? '—' }}
{{ $ticket->customer?->email ?? '' }}
|
{{ ucfirst($ticket->status) }} | {{ ucfirst($ticket->priority) }} | {{ ($ticket->last_message_at ?? $ticket->updated_at)->diffForHumans() }} | |
| {{ __('No tickets found.') }} | ||||||