fix add params filter date on grid js, export excel and pdf payment recaps

This commit is contained in:
arifal
2025-03-20 20:12:42 +07:00
parent eadfddb3a4
commit 088f173fec
6 changed files with 400 additions and 55 deletions

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laporan Rekap Pembayaran</title>
<style>
body { font-family: Arial, sans-serif; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid black; padding: 8px; text-align: center; }
th { background-color: #f2f2f2; }
</style>
</head>
<body>
<h2>Laporan Rekap Pembayaran</h2>
<table>
<thead>
<tr>
<th>Kategori</th>
<th>Nominal</th>
<th>Created</th>
</tr>
</thead>
<tbody>
@foreach($data as $item)
<tr>
<td>{{ $item['category'] }}</td>
<td>{{ $item['nominal'] }}</td>
<td>{{ $item['created_at'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>