@php
$typeColors = [
'vip' => 'from-amber-500 to-yellow-600',
'excellent' => 'from-purple-500 to-indigo-600',
'march' => 'from-blue-500 to-cyan-600',
'regular' => 'from-emerald-500 to-teal-600',
'companion' => 'from-gray-500 to-slate-600',
];
$typeLabels = [
'vip' => 'VIP',
'excellent' => 'متفوقين',
'march' => 'مسيرة',
'regular' => 'عادي',
'companion' => 'مرافقين',
];
@endphp
رقم التذكرة
{{ $ticket->ticket_number }}
{{ $typeLabels[$ticket->type] ?? $ticket->type }}
{{ $ticket->name }}
{{ $ticket->phone }}
{{ $ticket->national_id ?? '-' }}
{{ $ticket->institute ?? '-' }}
{{ $ticket->seat?->label ?? 'غير محدد' }}
@if($ticket->is_checked_in)
تم تسجيل الحضور - {{ $ticket->checked_in_at?->format('H:i') }}
@else
لم يتم تسجيل الحضور
@endif