@extends('admin.master') @section('content') @section('title','Job Interview List')

Job Name : {{$job->job_title}}


@if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
@if(count($results) > 0) @foreach($results as $value)
{{$value->applicant_name}}   Called for interview {{$job->post}}  Position

@if(isset($value->interviewInfo->comment)) {!! $value->interviewInfo->comment !!} @endif

Download Resume
@endforeach
{{$results->links()}}
@else

You have no job interview candidate....

@endif
@endsection