Files
konfirmasibank/Resources/views/pages/pagination_data.blade.php
2023-08-02 14:09:40 +07:00

18 lines
416 B
PHP

<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>