18 lines
416 B
PHP
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>
|