@include('templates.pdf_header', [ 'organisation' => $organisation, 'title' => 'INCOME STATEMENT COMPARISON', 'currency_code' => $currency ]) @php function renderComparisonRows($data, $currency) { // echo json_encode($data); exit(); foreach ($data as $row) { $indentLevel = $row['indent_level'] ?? 1; $indentClass = 'indent-' . $indentLevel; $boldClass = ($row['bold'] ?? false) ? 'bold' : ''; $rowType = $row['row_type'] ?? null; $currentValue = $row['value_current'] ?? 0; $previousValue = $row['value_previous'] ?? 0; // 🔥 Skip zero rows except headers if ( $rowType !== 'header' && $currentValue == 0 && $previousValue == 0 ) { continue; } echo ''; echo ''; // 🔥 Hide amounts for headers if ($rowType === 'header') { echo ''; echo ''; } else { echo ''; echo ''; } echo ''; if (!empty($row['children'])) { renderComparisonRows($row['children'], $currency); } } } renderComparisonRows($data, $currency); @endphp
Particulars Current ({{ $currentYear->financial_year }}) Previous ({{ $previousYear->financial_year ?? 'N/A' }})
' . $row['label'] . '' . number_format($currentValue, 2) . '' . number_format($previousValue, 2) . '
MWENYEKITI
MENEJA MKUU
MJUMBE