fix skit2

This commit is contained in:
MUHD HAFIFIE
2021-05-24 16:59:58 +08:00
parent dd0ca831da
commit 0e977ecb62
15 changed files with 306 additions and 101 deletions
+41
View File
@@ -529,6 +529,47 @@
</div>
</div>
</div>
<!-- Modal Baki Perubatan -->
<div class="modal fade" id="BakiPerubatanModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" 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="exampleModalLongTitle">Perbelanjaan Pos</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body text-center">
<table class='table table-striped table-hover' id='table-bakiperubatan' style="width:100%;">
<thead class="thead-dark">
<tr>
<th>bil</th>
<th>Nama Staff</th>
<th>Baki Perubatan(RM)</th>
</tr>
</thead>
<tbody>
@foreach($usercawangan as $index1=>$usercaw)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $usercaw->name }}</td>
<td>{{ number_format($usercaw->perubatan,2) }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Batal</button>
</div>
</div>
</div>
</div>