@extends('layouts.admin') @section('title', 'الحجوزات النشطة — دمشق باركينغ') @section('page-title', 'الحجوزات النشطة') @section('content') {{-- ── Header ──────────────────────────────────────────────────────────────── --}}

الحجوزات النشطة

السيارات المسجّلة حالياً · يتجدد كل 30 ثانية

{{ $activeBookings->total() }} نشط تحديث بعد 30ث
{{-- ── Filter ────────────────────────────────────────────────────────────────── --}}
@if(request('parking_lot_id')) @endif
{{-- ── Table ────────────────────────────────────────────────────────────────── --}}
@forelse($activeBookings as $booking) @empty @endforelse
رقم اللوحة السائق الهاتف الموقف وقت الدخول وقت الخروج المدة إنهاء
{{ $booking->vehicle_plate ?? $booking->customer_name ?? '--' }} {{ $booking->user_name ?? $booking->customer_name ?? '--' }} {{ $booking->user_phone ?? $booking->phone ?? '--' }} {{ $booking->parkingLot->name }} {{ $booking->start_time->format('Y/m/d H:i') }} {{ $booking->end_time->format('Y/m/d H:i') }} {{ $booking->start_time->diffForHumans(now(), true) }}

لا توجد حجوزات نشطة

جميع المواقف خالية حالياً

@if($activeBookings->hasPages())
عرض {{ $activeBookings->firstItem() }}–{{ $activeBookings->lastItem() }} من {{ $activeBookings->total() }} {{ $activeBookings->appends(request()->query())->links('pagination::bootstrap-5') }}
@endif
@push('scripts') @endpush @endsection