@extends('layouts.user') @section('title') My Grants @endsection @section('content') {{ auth()->user()->username }} {{ auth()->user()->email }} {{-- 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 Move to Main Wallet @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
{{ auth()->user()->email }}
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).