{{ __('Challans') }}

{{ __('Challans') }}

{{ __('Traffic violations and fines issued across your fleet.') }}

{{ __('Add Challan') }}
@if (session('status'))
{{ session('status') }}
@endif
@if (array_filter($filters ?? [])) {{ __('Clear') }} @endif
@if ($challans->isEmpty())

{{ __('No challans found.') }}

{{ __('Add your first challan') }}
@else
@foreach ($challans as $challan) @endforeach
{{ __('Challan #') }} {{ __('Vehicle') }} {{ __('Violation') }} {{ __('Amount') }} {{ __('Due Date') }} {{ __('Status') }}
{{ $challan->challan_number }} {{ $challan->vehicle->plate }} {{ $challan->violation_type }} {{ number_format((float) $challan->amount, 2) }} {{ $challan->due_date->format('M j, Y') }} {{ $challan->status()->label() }} {{ __('Edit') }}
{{ $challans->links() }}
@endif