@extends('layouts.user') @section('title') My Grants @endsection @section('content')
{{-- Matured, withdrawable grants --}}
Withdraw Grant Profits โ† Back to My Grants
@forelse($maturedGrants as $grant) @php $profit = max(0, $grant->balance); @endphp
{{ $grant->grant_type }} ({{ $grant->grant_flow === 'pre' ? 'Pre-Grant' : 'Post-Grant' }})
โœ“ Matured Matured {{ optional($grant->capital_retracted_at)->format('d M Y') }}
Grant #{{ $grant->id }} ยท Capital retracted, principal returned to program
${{ number_format($profit, 2) }}
Withdrawable profit
@csrf
@empty

No matured grants with withdrawable profit yet.

A grant becomes withdrawable once it reaches its full expiry window (capital is then retracted and any profit unlocks here).

View My Grants โ†’
@endforelse
@endsection