enhanced by codex

This commit is contained in:
Fiqh Pratama
2025-10-12 20:47:43 +07:00
parent 6b2e658070
commit 9375d2b45c
19 changed files with 556 additions and 187 deletions
@@ -747,6 +747,9 @@ class ReportController extends Controller
}
}
$totalKategori = array_sum($nominals);
$pettyCashAmount = $budget && $budget->amount ? $budget->amount : 0;
return view('backend.pages.report.generate_jurnal', [
'pageInfo' => [
'title' => 'Generate Reports For Jurnal',
@@ -758,6 +761,8 @@ class ReportController extends Controller
'kategori_bca' => $kategori_bca,
'nominals' => $nominals,
'budget' => $budget,
'totalKategori' => $totalKategori,
'pettyCashAmount' => $pettyCashAmount,
]);
}
}