@extends('Layouts.adminDashboardLayout') @section('content')
@include('includes.messages')
Applicants
@if(count($applicants) > 0)Applicants for {{$applicants[0]->jobOpening->title}} - {{$applicants[0]->job_number}}@endif
{{--
--}}
@if(count($applicants) > 0)@endif
@foreach($applicants as $applicant) @endforeach
Country State Email Date Applied Name[First *Middle* Last] Resume Cover note Action
{{$applicant->country->country}} {{$applicant->state->state}} {{$applicant->email}} {{$applicant->created_at}} {{ $applicant->firstname.' '.$applicant->middlename.' '.$applicant->lastname}} {!! nl2br($applicant->cover_letter) !!} @if (!$applicant->invite_status) @else Invited @endif
{{-- --}}
@include('includes.alerts') @endsection @section('script') @endsection