@extends('cms::layouts.master', ['dataTable' => true])
@section('title', 'Applicant Details')
@push('styles')
@endpush
@section('content')
Name | {{ $applicant->name }} |
---|---|
Phone | {{ $applicant->phone }} |
{{ $applicant->email }} | |
Field of Interest | {{ $applicant->field_of_interest }} |
Preferred Study Level | {{ $applicant->preferred_study_level }} |
Preferred Intake | {{ $applicant->preferred_intake }} |
Preferred Branch | {{ $applicant->preferred_branch }} |
Most Recent Qualification | {{ $applicant->most_recent_qualification }} |
Has Work Experience | {{ $applicant->has_work_experience == 1 ? 'Yes' : 'No' }} |
English Proficiency Test | {{ $applicant->english_proficiency_test }} |
Created At | {{ \Carbon\Carbon::parse($applicant->created_at)->format('d M, Y h:i A') }} |