fix skit2

This commit is contained in:
hafifierahman
2022-03-21 16:38:41 +08:00
parent f78de2340b
commit 80f4636a83
10 changed files with 288 additions and 6 deletions
@@ -44,19 +44,30 @@
<div class="row">
<div class="col-md-12">
<table class="table table-striped table-hover" id="permohonantable">
<thead class="thead-dark">
<thead class="thead-dark text-center">
<tr>
<th>Bil</th>
<th>No Permohonan</th>
<th>Tarikh Mohon</th>
<th>Jumlah Mohon (RM)</th>
<th>Bayaran Balik (RM)</th>
<th>Status</th>
<th>Jenis Permohonan</th>
<th>Act</th>
</tr>
</thead>
<tbody>
@foreach($permohonan as $mohon)
<tr class="text-center">
<td>{{ $loop->iteration }}</td>
<td>{{ $mohon['nopermohonan'] }}</td>
<td>{{ $mohon['tarikh_permohonan'] }}</td>
<td>{{ number_format($mohon['amaun_mohon'],2) }}</td>
<td>{{ $mohon['jenismohon'] }}</td>
<td>
<a href="{{ route('permohonan.status', ['mohonid' => $mohon['mohonid']]) }}" class="btn btn-info"><i class="fas fa-eye"></i></a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>