add new page konfirmasi bank
This commit is contained in:
17
Resources/views/pages/pagination_data.blade.php
Normal file
17
Resources/views/pages/pagination_data.blade.php
Normal 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>
|
Reference in New Issue
Block a user