@extends('backend.admin-master') @section('site-title') {{__('Applicant Report')}} @endsection @section('style') @endsection @section('content')
@include('backend.partials.message') @if(!empty($error_msg))
{{$error_msg}}
@endif

{{__("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); 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); unset($all_custom_fields_un['captcha_token']); @endphp @foreach($all_custom_fields_un as $field) @endforeach @php $all_custom_fields_un = unserialize($data->attachment); @endphp @foreach($all_custom_fields_un as $field) @endforeach @if(count($all_custom_fields_un) < 1){ @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