@extends('layouts.admin') @section('content')
{{--

الحجوزات

--}}

طلبات الحجز

@include('dashboard.includes.alerts.success') @include('dashboard.includes.alerts.errors')
@csrf @isset($appointments) @foreach ($appointments as $item) @endforeach @endisset
# {{ __('general.name') }} الهاتف البريد الألكترونى الموعد الشكوى {{ __('general.status') }} {{ __('general.actions') }}
{{ $loop->index + 1 }} {{ $item->name }} {{ $item->mobile }} {{ $item->email }} {{ \Carbon\Carbon::parse($item->appointment_date)->format('d/m/Y') }} {{ \Carbon\Carbon::parse($item->appointment_time)->format('h:i A') }} {{ $item->message }} {{-- $item -> getActive() --}} @if ($item->status == 'approved') اضغط لالغاء الحجز @else اضغط للحجز @endif
{{-- --}}
@isset($appointments) {{-- $appointments->withQueryString()->links('front.pagination.custom') --}} @endisset
@stop