{{ __('Fund Balance') }}:
{{ number_format((float) ($fundBalance ?? 0), 2) }}
{{ __('Cycle Stage') }}:
{{ isset($cycle) ? ucwords(str_replace('_', ' ', (string) $cycle->stage)) : '-' }}
{{ __('Approved recipients') }}:
{{ number_format((int) ($approvedRecipientsCount ?? 0)) }}
@if(!empty($cycle?->target_recipients_count))
/ {{ number_format((int) $cycle->target_recipients_count) }}
@endif
{{ __('Annual need (calculated)') }}:
{{ number_format((float) ($cycle?->annual_need_total ?? 0), 2) }}
{{ __('Budget') }}:
{{ number_format((float) ($cycle?->budget_amount ?? 0), 2) }}
{{ __('Donations total') }}:
{{ number_format((float) ($donationsTotal ?? 0), 2) }}