@extends('admin.layout') @section('title', 'لوحة التحكم') @section('page-title', 'نظرة عامة على لوحة التحكم') @section('content')
| رقم الحجز | العميل | المركبة | الحالة | المبلغ | الإجراءات |
|---|---|---|---|---|---|
|
#{{ $booking->booking_number }}
{{ $booking->created_at->format('M j, Y') }}
|
{{ $booking->user->full_name }}
{{ $booking->user->email }}
|
{{ $booking->vehicle->name }}
{{ $booking->total_days }} {{ $booking->total_days == 1 ? 'يوم' : 'أيام' }}
|
@switch($booking->status) @case('pending') في الانتظار @break @case('confirmed') مؤكد @break @case('active') نشط @break @case('completed') مكتمل @break @case('cancelled') ملغي @break @default {{ $booking->status }} @endswitch | ${{ number_format($booking->total_amount, 0) }} |
@if($booking->status === 'pending')
@endif
عرض
|
لا توجد حجوزات حديثة
لا توجد بيانات مركبات متاحة