@elseif(asset('images/logo.png'))
@endif
| Type | Amount | Percentage |
|---|---|---|
| 🔄 Recurring Expenses | UGX {{ number_format($recurring_expenses, 2) }} | {{ $total_expenses > 0 ? number_format(($recurring_expenses / $total_expenses) * 100, 1) : 0 }}% |
| 📅 One-Time Expenses | UGX {{ number_format($one_time_expenses, 2) }} | {{ $total_expenses > 0 ? number_format(($one_time_expenses / $total_expenses) * 100, 1) : 0 }}% |
| Month | Amount | vs Previous Month |
|---|---|---|
| {{ $month }} | UGX {{ number_format($amount, 2) }} | @if($previousAmount) {{ $change > 0 ? '+' : '' }}{{ number_format($change, 1) }}% @else — @endif |
| Vendor | Total Amount | Percentage |
|---|---|---|
| {{ $vendor->name ?? 'N/A' }} | UGX {{ number_format($amount, 2) }} | {{ $total_expenses > 0 ? number_format(($amount / $total_expenses) * 100, 1) : 0 }}% |