@extends('frontend.user.dashboard.user-master') @section('section') @if(count($event_attendances) > 0)
@foreach($event_attendances as $data) @endforeach
{{get_static_option('events_page_'.$user_select_lang_slug.'_name')}} {{__('Booking Info')}} {{__('Payment Status')}}
@if(!empty($data->event)) {{$data->event_name}} @else
{{__('This item is not available or removed')}}
@endif
{{__('Attendance ID:')}} #{{$data->id}} {{__('Ticket Price:')}} {{amount_with_currency_symbol($data->event_cost)}} {{__('Quantity:')}} {{$data->quantity}} {{__('Payment Gateway:')}} @php $custom_fields = unserialize($data->custom_fields); $selected_payment_gateway = isset($custom_fields['selected_payment_gateway']) ? str_replace('_',' ',__($custom_fields['selected_payment_gateway'])) : ''; @endphp {{$selected_payment_gateway}} {{__('Booking Status:')}} @if($data->status == 'pending') {{__($data->status)}} @elseif($data->status == 'cancel') {{__($data->status)}} @else {{__($data->status)}} @endif {{__('Date:')}} {{date_format($data->created_at,'d M Y')}} @if(!empty($data->event) && $data->payment_status == 'complete')
@csrf
@endif
@if($data->payment_status == 'pending' && $data->status != 'cancel') {{$data->payment_status}} {{__('Pay Now')}}
@csrf
@else {{$data->payment_status}} @endif
{{ $event_attendances->links() }}
@else
{{__('No Event Found')}}
@endif @endsection