@extends('layouts.customer') @section('content')

Candidates

@if ($message = Session::get('success'))

{{ $message }}

@endif
@if($candidates) @php $i = 0; @endphp @foreach( $candidates as $candidate ) dd( $candidate ) @endforeach @else

No records found!

@endif
Sr No Name Email 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 {{-- --}}
@endsection