Job After-Action Report

Deployment ID: #{{ $schedule->duty_number }} | Site: {{ $schedule->site->name }}

Operative Profile
Operative Name {{ $employee->first_name }} {{ $employee->last_name }}
Employee ID {{ $employee->employee_id }}
Organization {{ $schedule->company->name }}
Tactical Timeline
Scheduled Start {{ $schedule->from_datetime->format('Y-m-d H:i') }} Actual Start {{ $pivot->actual_start_at ? \Carbon\Carbon::parse($pivot->actual_start_at)->format('Y-m-d H:i') : 'N/A' }}
Scheduled End {{ $schedule->to_datetime->format('Y-m-d H:i') }} Actual End {{ $pivot->actual_end_at ? \Carbon\Carbon::parse($pivot->actual_end_at)->format('Y-m-d H:i') : 'N/A' }}
Geospatial Intelligence
Infiltration Coordinates (Start) {{ $pivot->start_lat ?? 'N/A' }}, {{ $pivot->start_lng ?? 'N/A' }}
Extraction Coordinates (End) {{ $pivot->end_lat ?? 'N/A' }}, {{ $pivot->end_lng ?? 'N/A' }}
Tactical Incident Logs ({{ $schedule->incidents->count() }})
@forelse($schedule->incidents as $incident)

{{ $incident->subject }}

{{ $incident->description }}

Filed at: {{ $incident->created_at->format('Y-m-d H:i') }}
@empty

No tactical incidents reported during this deployment.

@endforelse