@extends('layouts.app') @section('title') Applicant Details @endsection @section('content')
Applicant's Details
@if (session('success')) @elseif(session('rejected')) @elseif(session('error')) @endif
@if ($applicant->applicant_status == 'incomplete') Incomplete @elseif($applicant->applicant_status == 'verified') Verified @elseif($applicant->applicant_status == 'selected') Selected @elseif($applicant->applicant_status == 'rejected') Rejected @endif

{{ $user->first_name }} {{ $user->last_name }}
  • NRC/Passport: {{ $user->nrc_passport }}
  • Phone: {{ $user->phone }}
  • Email: {{ $user->email }}
@if ($applicant->applicant_status == 'complete') @elseif($applicant->applicant_status == 'selected') @elseif($applicant->applicant_status == 'rejected') @endif
Personal Details
  • Gender
    {{ $user->gender }}
  • Date of Birth
    {{ date('d-m-Y', strtotime($user->dob)) }}
  • Religion
    {{ $user->religion }}
Address

{{ $user->address }}
{{ $user->city }}


Application Details

{{--
--}}
  • Intake Year Applied for
    {{ $applicant->entry_year }}
  • Program
    @foreach ($programs as $program) @if ($program->id == $applicant->program_id) {{ $program->program_name }} @endif @endforeach


{{--
  • @foreach ($programs as $program) @if ($program->id == $applicant->program_id) {{$program->program_name}} @endif @endforeach
--}}

Educational Background

@if ($applicant->applicant_type_id)
  • High School Year of Completion
    {{ $applicant->highschool_compl_date }}
  • Hgh School Name
    {{ $applicant->highschool_name }}
  • Qualification
    {{ $applicant->highest_qualification }}
@endif

Front NRC
@if ($user->front_nrc_path == null) @elseif($user->front_nrc_path) @endif

Back NRC
@if ($user->back_nrc_path == null) @elseif($user->back_nrc_path) @endif

@foreach ($applicant_files as $applicant_file) @endforeach
# File Name File Type Action
{{ $loop->index + 1 }} {{ $applicant_file->file_name }} @foreach ($file_types as $file_type) @if ($file_type->id == $applicant_file->file_type_id) {{ $file_type->file_type_name }} @endif @endforeach {{-- --}}
@endsection