Laravel框架实现超简单的分页效果示例
程序员文章站
2022-06-23 22:10:31
本文实例讲述了laravel框架实现超简单的分页效果。分享给大家供大家参考,具体如下:
每页展示5条数据
控制器
class indexco extends...
本文实例讲述了laravel框架实现超简单的分页效果。分享给大家供大家参考,具体如下:
每页展示5条数据
控制器
class indexco extends controller { public function cc () { $lists = userali:: orderby('user_id','desc') -> paginate(5); return view('cc',compact('lists')); } }
layout/main.blade.php
<!doctype html> <html> <head> <title>home</title> <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" > </head> <body> <h1>home</h1> <p>welcome to my web</p> </body> </html> <!doctype html> <html> <head> <title>about</title> </head> <body> <h1>about</h1> <p>this is my first laravel web</p> @yield("content") </body> </html>
cc模板
view/cc.blade.php
@extends('layout.main') @section("content") <div> @foreach($lists as $value) <div> 阿里账号是:{{$value -> source}} <time>{{$value -> add_time}}</time> </div> @endforeach </div> {{$lists -> links()}} @endsection
两句话搞定分页。
当然,blade模板需要引入bootstrap,否则样式是出不来的。
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" >
更多关于laravel相关内容感兴趣的读者可查看本站专题:《laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于laravel框架的php程序设计有所帮助。
上一篇: 好玩的vbs特色代码vbs栈类
下一篇: 用vbs实现确定是否安装了某个特定的补丁