@php
$progressRaw = ($cause->intended_budget > 0)
? ($cause->raised_amount / $cause->intended_budget) * 100
: 0;
$progressPercentage = (int) max(0, min(100, round($progressRaw)));
@endphp
{{-- The percentage width is now directly on the progress-bar --}}
{{$progressPercentage}}%
-
Raised:
${{number_format($cause->raised_amount, 2)}}
-
Goal:
${{number_format($cause->intended_budget, 2)}}