You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
11 months ago
|
<div class="main-content">
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
<table class="table table-hover table-bordered">
|
||
|
<thead>
|
||
|
<tr class="bg-primary">
|
||
|
<th class="text-white text-center">#</th>
|
||
|
<th class="text-white text-center">NPWP</th>
|
||
|
<th class="text-white text-center">Nama WP</th>
|
||
|
<th class="text-white text-center">Bayar Sekarang</th>
|
||
|
<th class="text-white text-center">Bayar Lalu</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<?php
|
||
|
|
||
|
foreach ($detbyrlpr as $row) {
|
||
|
?>
|
||
|
<tr>
|
||
|
<td class="text-center"><?= $nomor++; ?></td>
|
||
|
<td class="text-center"><?= $row['NPWP'] ?></td>
|
||
|
<td><?= $row['NAMA'] ?></td>
|
||
|
<td class="text-right"><?= number_format($row['JMLBYR'], 0, ',', '.') ?></td>
|
||
|
<td class="text-right"><?= number_format($row['BYRLALU'], 0, ',', '.') ?></td>
|
||
|
</tr>
|
||
|
<?php
|
||
|
}
|
||
|
?>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<?= $pager->links('byrlpr', 'bootstrapag') ?>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<?php echo view('inc/js.php') ?>
|