@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

@slot('header') {{ $title }} @endslot
@if ($grantApplication->isTypeCompany())
Organization Name
{{ $grantApplication->name }}
Tax ID
{{ $grantApplication->tax_id }}
Organization Type
{{ $grantApplication->organization_type }}
Founding Year
{{ $grantApplication->founding_year }}
Mailing Address
{{ $grantApplication->full_mailing_address }}
Contact Phone
{{ $grantApplication->contact_phone }}
Contact Person
{{ $grantApplication->contact_person }}
Mission Statement
{{ $grantApplication->mission_statement }}
Date Of Incorporation
{{ formatDate($grantApplication->date_of_incorporation) }}
Project Title
{{ $grantApplication->contact_person }}
Project Description
{{ $grantApplication->project_description }}
Expected Outcome
{{ $grantApplication->expected_outcome }}
Amount
{{ currency($user->currency) }}{{ formatAmount($grantApplication->amount) }}
Status
{{ $grantApplication->status->label() }}
@if ($grantApplication->review_notes)
Review Note
{{ $grantApplication->review_notes ?? 'N/A' }}
@endif
Submitted At
{{ formatDateTime($grantApplication->submitted_at) }}
@else
Amount
{{ currency($user->currency) }}{{ formatAmount($grantApplication->amount) }}
Grant Category & Description
    @foreach ($grantApplication->grantCategory as $key => $value)
  • {{ $value->name }} - {{ $value->description }}
  • @endforeach
Status
{{ $grantApplication->status->label() }}
@if ($grantApplication->review_notes)
Review Note
{{ $grantApplication->review_notes ?? 'N/A' }}
@endif
Submitted At
{{ formatDateTime($grantApplication->submitted_at) }}
@endif
@if ($grantApplication->isPending())
@csrf @method('PATCH')
@endif
@endsection