@extends('backend.admin-master') @section('site-title') {{__('Applicant Report')}} @endsection @section('style') @endsection @section('content')
{{__('Attendance ID')}} | {{__('Event Title')}} | {{__('Event Cost')}} | {{__('Quantity')}} | {{__('Status')}} | @foreach($all_custom_fields_un as $key => $field){{ucfirst(str_replace('-',' ',$key))}} | @endforeach{{__('Attachment')}} | {{__('Date')}} | @foreach($order_data as $data)
---|---|---|---|---|---|---|---|
{{$data->id}} | {{$data->event_name}} |
{{site_currency_symbol().$data->event_cost}} | {{$data->quantity}} | @if($data->status == 'pending') {{$data->status}} @else {{$data->status}} @endif | @php $all_custom_fields_un = unserialize($data->custom_fields); unset($all_custom_fields_un['captcha_token']); unset($all_custom_fields_un['selected_payment_gateway']); unset($all_custom_fields_un['transaction_id']) @endphp @foreach($all_custom_fields_un as $field){{$field}} | @endforeach @php $all_custom_fields_un = unserialize($data->attachment); @endphp @foreach($all_custom_fields_un as $field){{url('/').$field}} | @endforeach{{date_format($data->created_at,'d M Y')}} |