@extends('backend.admin-master') @section('site-title') {{__('Applicant Report')}} @endsection @section('style') @endsection @section('content')

{{__("Applicant Report")}}

@if(!empty($order_data) && count($order_data) > 0) @endif
@if(!empty($order_data))
@if(count($order_data) > 0) @php $all_custom_fields_un = unserialize($order_data[0]->form_content,['class' =>false]); unset($all_custom_fields_un['captcha_token']); @endphp
@foreach($all_custom_fields_un as $key => $field) @endforeach @foreach($order_data as $data) @php $all_custom_fields_un = unserialize($data->form_content,['class' =>false]); unset($all_custom_fields_un['captcha_token']); @endphp @if($all_custom_fields_un) @foreach($all_custom_fields_un as $field) @endforeach @endif @php $all_custom_fields_un = unserialize($data->attachment); @endphp @if($all_custom_fields_un) @foreach($all_custom_fields_un as $field) @endforeach @endif @endforeach
{{__('Job ID')}} {{__('Job Title')}}{{ucfirst(str_replace('-',' ',$key))}}{{__('Attachment')}} {{__('Date')}}
{{$data->jobs_id}} {{$data->job->title}}{{$field}}{{url('/').$field}}{{date_format($data->created_at,'d M Y')}}
{!! $order_data->links() !!}
@else
{{__('No Item Found')}}
@endif
@endif
@endsection @section('script') @endsection