@extends('frontend.user.dashboard.user-master') @section('section') @if(!empty(get_static_option('appointment_module_status'))) @if(count($appointments) > 0)
@foreach($appointments as $data) @endforeach
{{get_static_option('appointment_page_'.$user_select_lang_slug.'_name')}} {{__('Booking Info')}} {{__('Booking & Payment Status')}}
@if(!empty($data->appointment->lang_front->title)) {{$data->appointment->lang_front->title}} @else
{{__('This item is not available or removed')}}
@endif
{{get_static_option('appointment_page_'.$user_select_lang_slug.'_name')}} {{__('ID:')}} #{{$data->id}} {{__('Amount:')}} {{amount_with_currency_symbol($data->total)}} {{__('Payment Gateway:')}} {{str_replace('_',' ',__($data->payment_gateway))}} {{__('Booking Date:')}} {{date('D,d F Y',strtotime($data->booking_date))}} {{__('Booking Time:')}} {{$data->booking_time->time ?? __('Not Set')}} {{__('Booking Status:')}} {{$data->status}} {{__('Date:')}} {{date_format($data->created_at,'d M Y')}}
@if($data->status == 'pending') {{__($data->status)}} @if( $data->payment_gateway != 'manual_payment')
@csrf
@endif
@csrf
@elseif($data->status == 'cancel') {{__($data->status)}} @else {{__($data->status)}} @endif @if(!empty($data->manual_payment_attachment)) {{__('View Bank Attachment')}} @endif
{{ $appointments->links() }}
@else
{{__('Nothing Found')}}
@endif @endif @endsection