laravel-rs/resources/views/exports/report-pdf.blade.php
Uchiha Bayu Senju 4654a2e350
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Upload
2025-04-27 23:55:09 +07:00

18 lines
517 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>Laporan Rumah Sakit</title>
<style>
body { font-family: sans-serif; }
h2 { text-align: center; }
</style>
</head>
<body>
<h2>Laporan Rumah Sakit</h2>
<p>Total Pasien: {{ $reportData['totalPatients'] }}</p>
<p>Total Pendaftaran: {{ $reportData['totalRegistrations'] }}</p>
<p>Total Pendapatan: Rp {{ number_format($reportData['totalIncome'], 0, ',', '.') }}</p>
<p>Dibuat pada: {{ now()->format('d-m-Y H:i:s') }}</p>
</body>
</html>