@extends('admin.layout') @section('content')

{{ __('Applicants') }}

{{ __('Applicants List:') }}

@foreach ($applicants as $id=>$applicant) @endforeach
{{ __('Job Title') }} {{ __('Job Position') }} {{ __('Apply Date') }} {{ __('Status') }} {{ __('Action') }}
{{ $applicant->job_title }} {{ $applicant->type }} {{$applicant->created_at->diffForHumans()}}
@csrf
@csrf
@endsection