Files
kaunter/resources/views/modal/historytebus.blade.php
T
2021-02-10 17:15:14 +08:00

76 lines
3.1 KiB
PHP

<!-- Modal HistoryBayaran -->
<div class="modal fade" id="historytebusModal" 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 Tebus</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-12">
<div>Harga Jualan : <span id="hargajualanmodal"></span></div>
</div>
<div class="col-12">
<div>Pembiayaan : <span id="pembiayaanmodal"></span></div>
</div>
<div class="col-12">
<div>Nilai Marhun : <span id="nilaimarhunmodal"></span></div>
</div>
</div>
<ul class="nav nav-tabs" id="custom-tabs-one-tab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="custom-tabs-one-home-tab" data-toggle="pill" href="#custom-tabs-one-home" role="tab" aria-controls="custom-tabs-one-home" aria-selected="true">Rekod Bayaran</a>
</li>
<li class="nav-item">
<a class="nav-link" id="custom-tabs-one-profile-tab" data-toggle="pill" href="#custom-tabs-one-profile" role="tab" aria-controls="custom-tabs-one-profile" aria-selected="false">Rekod SAG</a>
</li>
</ul>
<div class="tab-content" id="custom-content-below-tabContent">
<div class="tab-pane fade show active" id="custom-tabs-one-home" role="tabpanel" aria-labelledby="custom-content-below-home-tab">
<hr>
<h4>Rekod Bayaran</h4>
<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="tab-pane fade" id="custom-tabs-one-profile" role="tabpanel" aria-labelledby="custom-content-below-profile-tab">
<hr>
<h4>Rekod SAG</h4>
<table id="tablehistorytebus" class="table table-striped table-bordered text-center">
<thead>
<tr>
<th>Bil</th>
<th>No Rujukan</th>
<th>Jenis Tebus</th>
<th>JBG</th>
<th>Tarikh Tebus</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger btn-lg" data-dismiss="modal">Batal</button>
</div>
</div>
</div>
</div>