18 lines
517 B
PHP
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>
|