@extends('layouts.admin') @section('title', 'سجل الحضور') @section('content')

سجل الحضور

متابعة حضور الضيوف والخريجين

ماسح الباركود تصدير Excel
@if(request()->hasAny(['search', 'status', 'type'])) إلغاء @endif
إجمالي التذاكر
{{ $totalTickets }}
حضروا
{{ $attendedCount }}
غائبون
{{ $absentCount }}
نسبة الحضور
{{ $attendanceRate }}%
@forelse($tickets as $ticket) @empty @endforelse
رقم التذكرة الاسم الجوال النوع رقم الكرسي الحالة وقت الحضور الإجراءات
{{ $ticket->ticket_number }} {{ $ticket->name }} {{ $ticket->phone }} @if($ticket->type === 'vip') VIP @else عادي @endif {{ $ticket->seat_number }} @if($ticket->attendance_status) حضر @else غائب @endif @if($ticket->attended_at) {{ \Carbon\Carbon::parse($ticket->attended_at)->format('h:i A') }} @else - @endif @if(!$ticket->attendance_status)
@csrf
@else
@csrf
@endif
لا توجد نتائج
@if($tickets->hasPages())
{{ $tickets->links() }}
@endif
@endsection