@extends('layouts.training_centre_layout')
@php
use Illuminate\Support\Str;
use Carbon\Carbon;
$trainers = $trainers ?? collect();
$infrastructure = $infrastructure ?? [];
$facilityDetails = $facilityDetails ?? collect();
$selectedProgram = $selectedProgram ?? collect();
$payment = $payment ?? null;
$centreDocument = $centreDocument ?? (object)[];
$centreId = $centre->id ?? null;
$pageTitle = $pageTitle ?? 'Application Preview';
$status = $centre->application_status ?? null;
$editRoute = $centreId ? route('centre.my-application.edit', ['id' => $centreId]) : '#';
$applyRoute = route('training-centre.my-application.apply-now');
$backButtonRoute = ($status === 'DISCREPANCY_FOUND')? $editRoute: $applyRoute;
@endphp
@section('content')
Date of Birth: {{ $trainer->dob ? \Carbon\Carbon::parse($trainer->dob)->format('d M Y') : 'N/A' }}
Education: {{ $trainer->higher_qualification ?? 'N/A' }}
Experience: {{ $trainer->experience ? $trainer->experience . ' years' : 'N/A' }}
No trainers have been added yet.
Provide details about training infrastructure
❌ Not Provided
@endif @else{{ $field['value'] }}
@endifThese are the programs selected for your centre
{{ count($files) }} {{ Str::plural('file', count($files)) }}