@foreach ($formDetails as $detail)
@php
$unitCode = $detail->unit_code;
$unitCategory = $unitsMap[$unitCode]->category ?? null;
@endphp
{{ $detail->activity ? $detail->activity->name : 'N/A' }}
@if ($unitCategory)
@else
{{ $unitCode }}
@endif
@endforeach