@include('templates.pdf_header', [ 'organisation' => $organisation, 'title' => 'INCOME STATEMENT', 'currency_code' => $currency ]) @php function renderRows($data, $currency) { foreach ($data as $row) { $indentLevel = $row['indent_level'] ?? 1; $indentClass = 'indent-' . $indentLevel; $boldClass = ($row['bold'] ?? false) ? 'bold' : ''; $rowType = $row['row_type'] ?? null; $value = $row['value_current'] ?? 0; // 🔥 Skip rows with zero amount unless header if ($rowType !== 'header' && $value == 0) { continue; } echo ''; // Row label echo ''; // Show amount only if not a header if ($rowType === 'header') { echo ''; } else { echo ''; } echo ''; // Render children recursively if (!empty($row['children'])) { renderRows($row['children'], $currency); } } } renderRows($data, $currency); @endphp
Particulars Amount
' . $row['label'] . '' . number_format($value, 2) . '
MWENYEKITI
MENEJA MKUU
MJUMBE