Validation des Tickets
{{ number_format($totalTickets) }}
Total Tickets
{{ number_format($ticketsValides) }}
Tickets Validés
{{ number_format($ticketsEnAttente) }}
En Attente
@forelse($tickets as $ticket)
@if($ticket->status === 'active')
@endif
@empty
@endforelse
{{-- Pagination --}}
@if($tickets->hasPages())
Ticket #{{ $ticket->verification_code }}
{{ $ticket->creation_date->locale('fr')->isoFormat('DD MMMM YYYY, HH:mm') }}
Chauffeur
{{ $ticket->lot->affectation->chauffeur->nom }}
Véhicule
{{ $ticket->lot->affectation->vehicule->matricule }}
Zone
{{ $ticket->lot->affectation->zone->nom_zone }}
Montant
{{ number_format($ticket->montant, 2) }} DH
Aucun ticket trouvé
Aucun ticket ne correspond à vos critères de recherche
{{ $tickets->links() }}
@endif