@extends('layouts.admin') @section('title', 'Manage Deferments') @section('content')
| # | Registration Number | Reason | Status | Attachment | Submitted On | Actions |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $deferment->registration_number ?? 'N/A' }} | {{ $deferment->reason }} | {{ ucfirst($deferment->status) }} | @if($deferment->attachment) View @else N/A @endif | {{ $deferment->created_at ? $deferment->created_at->format('d M Y') : 'N/A' }} | Edit |
| No deferment requests found. | ||||||