Files
kaunter/resources/views/modal/historybayaran.blade.php
T
2021-01-09 19:52:59 +08:00

36 lines
1.2 KiB
PHP

<!-- Modal HistoryBayaran -->
<div class="modal fade" id="historybayaranModal" tabindex="-1" role="dialog" aria-labelledby="ModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalTitle">History Bayaran</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<table id="tablehistorybayaran" class="table table-striped table-bordered text-center">
<thead>
<tr>
<th>Bil</th>
<th>Tarikh Bayaran</th>
<th>Bayaran</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger btn-lg" data-dismiss="modal">Batal</button>
</div>
</div>
</div>
</div>