| {{ $loop->iteration }} |
{{ $fd->clientAccount->client->surname ?? '' }}
{{ $fd->clientAccount->client->first_name ?? '' }}
|
{{ $fd->clientAccount->client->account_number ?? '' }} |
{{ number_format($fd->principal, 2) }} |
{{ $fd->interest_rate }}% |
{{ $fd->tenor }} |
{{ $fd->days_run }} |
{{ number_format($fd->interest_accrued, 2) }} |
{{ number_format($fd->current_value, 2) }} |
@if($fd->status === 'active')
Active
@elseif($fd->status === 'matured')
Matured
@elseif($fd->status === 'paid_out')
Paid Out
@else
{{ ucfirst($fd->status) }}
@endif
|
{{-- View --}}
{{-- Certificate --}}
{{-- Rollover --}}
@if($fd->status === 'matured' && !$fd->payout_done)
@endif
{{-- Payout --}}
@if($fd->status === 'matured' && !$fd->payout_done)
@endif
{{-- Paid Out --}}
@if($fd->payout_done)
Paid {{ optional($fd->paid_out_at)->format('d M Y') }}
@endif
|
@empty