@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Applicant')}} @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Applicant')}}

@foreach($all_applicant as $data) @php $all_custom_fields = []; $all_custom_fields_un = unserialize($data->form_content); unset($all_custom_fields_un['captcha_token']); $all_custom_fields = json_encode($all_custom_fields_un); @endphp @endforeach
{{__('ID')}} {{__('Job Title')}} {{__('Job Position')}} {{__('Date')}} {{__('Action')}}
{{$data->id}} {{!empty($data->job) ? $data->job->title : __('This job is not available or delete')}} {{!empty($data->job) ? $data->job->position : __('This job is not available or delete')}}{{date_format($data->created_at,'d M Y')}}
@endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection