cf lumen设置
对lumen 分页的样式怎么设置样式
class PostController extends Controller
{
/**
* 显示21135261文章列表.
*
* @4102return Response
*/
public function index()
{
//使用查询构建器1653进行简单内分页,容每页显示3条记录
$posts = DB::table('posts')->simplePaginate(3);
return view('post.index',['posts'=>$posts]);
}
...
}