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

{{ $title }}

@slot('header') All Grant Applications @endslot
@foreach ($grantApplications as $grantApplication) @endforeach
# Grant Type Amount Status Action
{{ $loop->iteration }} {{ $grantApplication->type }} {{ currency($user->currency) }}{{ formatAmount($grantApplication->amount) }} {{ $grantApplication->status->label() }} View
@endsection