@extends('reports.layout') @section('content') @php function fmt($amount) { return '$ ' . number_format((float)$amount, 2); } $jalaliMonths = ['حمل', 'ثور', 'جوزا', 'سرطان', 'اسد', 'سنبله', 'میزان', 'عقرب', 'قوس', 'جدی', 'دلو', 'حوت']; @endphp
| نوع مصرف | @foreach($jalaliMonths as $month){{ $month }} | @endforeachمجموع |
|---|---|---|
| {{ $row['category'] }} | @for($i = 1; $i <= 12; $i++){{ fmt($row[$i] ?? 0) }} | @endfor{{ fmt($row['total'] ?? 0) }} |
| مجموع | @for($i = 1; $i <= 12; $i++){{ fmt($monthTotals[$i] ?? 0) }} | @endfor{{ fmt($grandTotal) }} |