add new page konfirmasi bank

This commit is contained in:
KhatamNugraha
2023-08-02 14:09:40 +07:00
parent 61185134b5
commit 2ec52d344f
7 changed files with 471 additions and 7 deletions

View File

@ -0,0 +1,17 @@
<div class="table-responsive">
<table class="table table-striped table-bordered">
<tr>
<th width="10%">ACCOUNT NO</th>
<th width="40%">BRANCH</th>
<th width="50%">ACCOUNT TYPE</th>
</tr>
@foreach($data as $row)
<tr>
<td>{{ $row->account_number }}</td>
<td>{{ $row->branch_name }}</td>
<td>{{ $row->product_description }}</td>
</tr>
@endforeach
</table>
{!! $data->links() !!}
</div>