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.
37 lines
1.3 KiB
37 lines
1.3 KiB
<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">Total</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<?php |
|
|
|
foreach ($detkat 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['TOTAL'], 0, ',', '.') ?></td> |
|
</tr> |
|
<?php |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
<?= $pager->links('detkat', 'bootstrapag') ?> |
|
|
|
</div> |
|
|
|
</div> |
|
</div> |
|
|
|
|
|
<?php echo view('inc/js.php') ?>
|