@extends('layouts.app_old') @section('title') Shortlist Candidate @endsection @section('content')
@include('partials.alert')

Job Post

{{ $job->title }}
{!! $job->body !!}
  • Budget : $ {{number_format($job->budget)}}
  • Posted: {{$job->created_at->diffForHumans()}}
  • Position : {{ucwords($job->position_type)}}
  • Project Duration: {{ ucwords($job->project_duration) }}
  • Category: {{ ucwords($job->category->category_name) }}
@foreach($applicants->sortByDesc('created_at') as $applicant ) @if(!empty($applicant->photo)) @else @endif @if ($applicant->status == 'hired') @elseif ($applicant->status == 'rejected') @else @endif @endforeach
{{ $applicant->name }}

{{ $applicant->job_title }}

Received: {{ $job->created_at->diffForHumans() }} {{ $applicant->country }}

HIRED

REJECTED

@endsection @section('jsplugins') @endsection