@extends('components.customer_layout') @section('customer-content')
| # | Office | Service | Status | Applied Date | Actions |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ optional($application->office)->name }} | {{ optional($application->service)->name }} | @if($application->requestable) @php $status = strtolower($application->requestable->status ?? 'NA'); @endphp {{ ucfirst($status) }} @else N/A @endif | {{ $application->created_at->format('d M, Y H:i A') }} | View @if(isset($status) && $status == 'rejected') Edit @endif |