@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title', 'Schedule Job Interviews') @section('content')
Schedule Job Interviews
@csrf {{-- Interview Date and Time --}}

{{-- Applications List --}}
Select Candidates
@if($applications->count())
{{-- --}} @foreach($applications as $app) {{-- --}} @endforeach
All Candidate Name Email PhoneExperienceSkills
{{ $app->candidate->user->name ?? 'N/A' }} {{ $app->candidate->user->email ?? 'N/A' }} {{ $app->candidate->user->phone ?? 'N/A' }}{{ $app->experience ?? 'N/A' }} years{{ $app->candidate->skills ?? 'N/A' }}
@else
No applications available for scheduling interviews.
@endif
@endsection @section('script') @endsection