@extends('layouts.app') @section('title', 'NDRT Surge Profile') @section('content')
{{ $ndrt->id_type }}: {{ $ndrt->id_number }}
| Age: | {{ $ndrt->age }} years |
|---|---|
| Gender: | {{ $ndrt->gender }} |
| Blood Group: | {{ $ndrt->blood_group ?? 'N/A' }} |
| Total Deployments: | {{ $ndrt->deployment_count }} |
| Active Deployments: | {{ $ndrt->active_deployments }} |
| Completed: | {{ $ndrt->completed_deployments }} |
Institution: {{ $exp['institution'] ?? '' }}
{{ $exp['description'] ?? '' }}
| Training Name | Date | Location | Grade | Actions |
|---|---|---|---|---|
| {{ $training->name }} | {{ optional($training->start_date)->format('d M Y') }} | {{ $training->location }} | @if($existingGrade) @if($existingGrade->grade == '1-Needs further training') 1 - Needs further training @elseif($existingGrade->grade == '2-Deploy with Support') 2 - Deploy with Support @elseif($existingGrade->grade == '3-Strong') 3 - Strong @else {{ $existingGrade->grade }} @endif @else Not graded @endif |
No training records yet.
@endifNo deployment months yet.
@endif| Mission Location | Start Date | End Date | Status |
|---|---|---|---|
| {{ $deployment->mission_location }} | {{ $deployment->start_date->format('d M Y') }} | {{ $deployment->end_date->format('d M Y') }} | @if($deployment->status == 'Active') Active @else Completed @endif |
No deployment records yet.
@endif