@extends('layouts.dash2') @section('title', 'My Grant Applications') @section('content')
@include('partials._mobile_header', [ 'title' => 'My Applications', 'showBackButton' => true, 'backUrl' => route('grant.index'), 'showNotifications' => true, 'showDarkMode' => true, 'financeUser' => Auth::user(), 'actionButton' => [ 'text' => 'New', 'icon' => 'plus', 'url' => route('grant.index') ] ])
@if(count($applications) > 0)
@foreach($applications as $application)
#{{ $application->id }}
@if($application->status == 'approved') Approved @elseif($application->status == 'processing') Processing @elseif($application->status == 'pending') Pending @elseif($application->status == 'rejected') Not Approved @elseif($application->status == 'disbursed') Disbursed @endif
{{ ucfirst($application->application_type) }} • {{ $application->created_at->format('M d, Y') }}
{{ Auth::user()->s_curr }}{{ number_format($application->requested_amount, 2, '.', ',') }}
View @if($application->status == 'pending' || $application->status == 'processing') Edit @endif
@endforeach
{{ $applications->links() }}
@else

No Applications Yet

You haven't submitted any grant applications yet.

Start New Application
@endif

Grant Application FAQ

How long does the application review process take?

Applications are typically reviewed within 3-5 business days. You will be notified by email once a decision has been made.

Can I edit my application after submission?

You may edit your application while it is still in "Under Review" status. Once the status changes, no further edits can be made.

How soon can I reapply if my application is not approved?

You may submit a new application 30 days after receiving a decision on your previous application.

Need more help?

Contact our support team at {{ $contact_email }}.

@endsection