@foreach([
['Savings (USD)', '$'.number_format($member->savings_balance,2)],
['Savings (LRD)', 'L$'.number_format($member->savings_balance * $rate,2)],
['Monthly Contribution', '$'.number_format($member->monthly_contribution,2)],
['Max Eligible (3× savings)', '$'.number_format($member->savings_balance*3,2)],
] as [$lbl,$val])
{{ $lbl }}{{ $val }}
@endforeach