例如
<table class="table table-bordered table-striped">
<tr>
<th>id</th>
<th>name</th>
<th>sex</th>
<th>Action</th>
</tr>
@foreach($results as $v)
<tr>
<td>{{$v->id}}</td>
<td>{{$v->name}}</td>
<td>{{$v->sex}}</td>
<td>action</td>
</tr>
@endforeach
<tfoot>
<tr>
<td colspan=4>{{$results->links()}}</td>
</tr>
</tfoot>
</table>
好了,这里最关键的就是我们的tfoot里面的内容了...
它能够自动生成我们的分页.
这里我们要注意一点.
最终生成的连接如 http://localhost/party/public/notice?page=2
这样我们就能够正常的进行翻页操作了.
php Laravel 框架之分页,布布扣,bubuko.com
原文地址:http://blog.csdn.net/lcstrive/article/details/27230183