@extends('layouts.customer') @section('content')
{{ $message }}
| Sr No | Name | Job Title | Job Description | Job Position | Job Type | Action | |
|---|---|---|---|---|---|---|---|
| {{ ++$i }} | {{ $candidate->first_name . " " . $candidate->last_name }} | {{ $candidate->email }} | {{ $candidate->job->title ?? '' }} | {{ $candidate->job->short_description ?? '' }} | {{ $candidate->job->position ?? '' }} | @if( isset($candidate->job->type) && $candidate->job->type == '1' ) Permanent @else Temporary @endif |
|