@extends('layouts.user') @section('title', 'حجوزاتي — دمشق باركينغ') @section('content') {{-- Page header --}}
العودة

حجوزاتي

سجل حجوزاتك في مواقف السيارات

{{-- ── Stats row ──────────────────────────────────────────────────────────── --}}
@php $statCards = [ ['label' => 'إجمالي الحجوزات', 'value' => $stats['total'], 'icon' => 'bi-calendar3', 'color' => '#6366f1', 'bg' => 'rgba(99,102,241,.1)'], ['label' => 'نشطة', 'value' => $stats['active'], 'icon' => 'bi-clock-history', 'color' => '#f59e0b', 'bg' => 'rgba(245,158,11,.1)'], ['label' => 'مكتملة', 'value' => $stats['completed'], 'icon' => 'bi-check-circle', 'color' => '#10b981', 'bg' => 'rgba(16,185,129,.1)'], ['label' => 'ملغاة', 'value' => $stats['cancelled'], 'icon' => 'bi-x-circle', 'color' => '#ef4444', 'bg' => 'rgba(239,68,68,.1)'], ]; @endphp @foreach($statCards as $s)
{{ $s['value'] }}
{{ $s['label'] }}
@endforeach
{{-- ── Bookings table ──────────────────────────────────────────────────────── --}}
قائمة الحجوزات {{ $stats['total'] }} حجز
@if($bookings->isEmpty())

لا توجد حجوزات بعد

ابدأ بالبحث عن موقف وحجز مكانك

تصفح المواقف
@else
@foreach($bookings as $booking) @endforeach
# الموقف تاريخ البدء تاريخ الانتهاء الحالة
{{ $booking->id }} {{ $booking->parkingLot?->name ?? '—' }}
{{ $booking->parkingLot?->address }}
{{ $booking->start_time->format('Y/m/d') }}
{{ $booking->start_time->format('H:i') }}
{{ $booking->end_time->format('Y/m/d') }}
{{ $booking->end_time->format('H:i') }}
@if($booking->status === 'active') نشط @elseif($booking->status === 'completed') مكتمل @else ملغي @endif
@endif
@endsection