Grant Applications
All Grant Applications
@if(session('success'))
View All
View All
View All
View All
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
Processing
{{ $applications->where('status', 'processing')->count() }}
Approved
{{ $applications->where('status', 'approved')->count() }}
Rejected
{{ $applications->where('status', 'rejected')->count() }}
Disbursed
{{ $applications->where('status', 'disbursed')->count() }}
| ID | User | Type | Status | Requested | Approved | Date | Action |
|---|---|---|---|---|---|---|---|
| {{ $application->id }} | {{ $application->user->name }} {{ $application->user->lastname }} | {{ ucfirst($application->application_type) }} | @if($application->status == 'processing') Processing @elseif($application->status == 'approved') Approved @elseif($application->status == 'rejected') Rejected @elseif($application->status == 'disbursed') Disbursed @endif | ${{ number_format($application->requested_amount, 2) }} | @if($application->approved_amount) ${{ number_format($application->approved_amount, 2) }} @else - @endif | {{ $application->created_at->format('M d, Y') }} |
{{ $applications->links() }}