@extends('account::layouts.account') @section('title','Job Applicants') @section('subtitle','List of your applications') @section('content')
Export Applicants
@include('account::applicants.inc.filter')
@if ($applicants->count()) @foreach($applicants as $applicant) @endforeach @else @endif
Job Title Name Profession Country Date Actions
{{ $applicant?->job?->name ?: '-'}} {{ $applicant->fname .' ' . $applicant->lname }} {{ ucfirst(str_replace('-',' ',$applicant->profession)) }} {{ ucfirst($applicant->country) }} {{ app_datetime($applicant->created_at) }} View
Not found
@if ($applicants->hasPages()) @endif
@endsection