@php use Illuminate\Support\Facades\App; @endphp @extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Edit Appointment Detail")}}

@endsection @section("content") @include("includes.dialog")

{{__('Edit Booking Info')}}

@csrf

{{__('Old Booking Info')}}

{{__('Doctor Name')}}: {{$user_doctor ? $user_doctor->full_name : 'NO Name'}} {{__('Date')}} : {{$user_object_booking->date ?? 'NO Date'}} {{__('Patient Name')}} : {{$user_name ?? 'NO Name'}}
{{__('Time From')}} : {{date('h:i',strtotime($user_slot_time->time_from))}} {{__('Time To')}} : {{date('h:i',strtotime($user_slot_time->time_to))}}
{{__('Day')}} : {{App::getLocale() == 'en' ? $object_week_days->week_day_en_name : $object_week_days->week_day_ar_name}}
@livewire('counter',['res_id'=>$reservation_record_id,'user_id'=>$user_id])
@endsection @section("scripts") @endsection