Application List

@foreach ($nocs as $index => $noc) @endforeach
Sr.No Application No Applicant Name Date Phone No Status
{{ $index + 1 }} {{ $noc->application_id }} {{ $noc->applicant_name }} {{ \Carbon\Carbon::parse($noc->date)->format('d-m-Y') }} {{ $noc->phone_no }} @php $statusMap = [ '1' => 'Approved', '2' => 'Rejected', 'default' => 'Pending', ]; @endphp {{ $statusMap[$noc->status] ?? $statusMap['default'] }}