36 lines
995 B
PHP
36 lines
995 B
PHP
<!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>
|