Ticket Management & Search

Search, inspect, reprint, or resolve lost/cancelled parking passes.

@if(session('success'))
{{ session('success') }}
@endif
Reset
@forelse($tickets as $ticket) @empty @endforelse
Ticket & Barcode Vehicle Plate Category & Type Entry Time Status Paid Amount Actions
{{ $ticket->ticket_number }}
{{ $ticket->barcode }}
@if($ticket->monthlyCustomer) ID: {{ $ticket->monthlyCustomer->customer_code }} @endif {{ $ticket->monthlyCustomer->vehicle_number ?? $ticket->vehicle_number }}
@if($ticket->driver_mobile)
{{ $ticket->driver_mobile }}
@endif
{{ $ticket->vehicleCategory->name ?? 'N/A' }}
{{ $ticket->customer_type === 'monthly' ? 'Monthly Sub' : 'Walk-In' }}
{{ $ticket->entry_at->format('d M, Y h:i A') }}
{{ $ticket->entry_at->diffForHumans() }}
{{ $ticket->status }} ৳{{ number_format($ticket->total_paid, 2) }} Details @if($ticket->status === 'parked') Ticket Pass @elseif($ticket->status === 'completed' || $ticket->status === 'lost') Receipt @endif
No parking tickets found matching search criteria.
{{ $tickets->links() }}