@include('layouts.header', ['title' => 'Association Lists'])
@include('layouts.navbar') @include('layouts.sidebar')
{{--

Manage Agency Lists

--}}

Allotment Requests

@foreach ($allotmentRequests as $key => $val) {{-- --}} @endforeach @if ($allotmentRequests->isEmpty()) @endif
Sl. No. Application ID Project Citizen Details Submitted On Status Action
{{ $loop->iteration + ($allotmentRequests->currentPage() - 1) * $allotmentRequests->perPage() }} {{ $val->application_id }} {{ $val->project->name }} {{ $val->citizen->name }}
{{ $val->citizen->mobile_no }}
{{ $val->created_at ? date('d M Y', strtotime($val->created_at)) : 'N/A' }} @if ($val->status == 3) Pending @elseif ($val->status == 4) Approved @elseif ($val->status == 5) Rejected @endif
No records found.
{{ $allotmentRequests->appends(request()->query())->links('pagination::bootstrap-5') }}
@include('layouts.footer')