@extends('layouts.user') @section('title', 'حجوزاتي — دمشق باركينغ') @section('content') {{-- Page header --}}
سجل حجوزاتك في مواقف السيارات
| # | الموقف | تاريخ البدء | تاريخ الانتهاء | الحالة |
|---|---|---|---|---|
| {{ $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 |