@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 }} {{ $item->field }} {{ $item->service->name_ar }} {{ $item->address }} {{ $item->message }} {{ \Carbon\Carbon::parse($item->created)->format('d/m/Y') }} {{-- $item -> getActive() --}} @if ($item->status == 'approved') اضغط لالغاء الحجز @else اضغط للحجز @endif
{{-- --}}
@isset($appointments) {{-- $appointments->withQueryString()->links('front.pagination.custom') --}} @endisset
@stop