Laravel 自定义分页样式

操作步骤如下:

(1)  对应public/css/paging.css 文件建立分页样式.

(2)  控制器查出分页数据使用 paginate函数进行分页处理.(禁止使用group by处理查询).

(3) 对应视图引入分页样式.

例如: paging.css 文件代码(复制即可用,实际操作过)如下

    #pull_right{
        text-align:center;
    }
    .pull-right {
        /*float: left!important;*/
    }
    .pagination {
        display: inline-block;
        padding-left: 0;
        margin: 20px 0;
        border-radius: 4px;
    }
    .pagination > li {
        display: inline;
    }
    .pagination > li > a,
    .pagination > li > span {
        position: relative;
        float: left;
        padding: 6px 12px;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #428bca;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #ddd;
    }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
        margin-left: 0;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }
    .pagination > li > a:hover,
    .pagination > li > span:hover,
    .pagination > li > a:focus,
    .pagination > li > span:focus {
        color: #2a6496;
        background-color: #eee;
        border-color: #ddd;
    }
    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #428bca;
        border-color: #428bca;
    }
    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }
    .clear{
        clear: both;
    }

例如:TestCntroller.php 控制器示例写法

<?php

namespace App\Http\Controllers;

use Illuminate\Support\Facades\DB;
use App\Http\Controllers\Controller;

class TestController extends Controller{
    /**
     * 测试数据
     */
    public function index()
    {
        $test = DB::table(‘test‘)->paginate(5);
        return view(‘index‘, [‘test‘ => $test]);
    }
}

例如: list.blade.php 视图文件代码示例写法

<!--用于引用css-->
<link  rel="stylesheet" type="text/css" href="{{asset(‘css/paging.css‘)}}"/>

<div class="container">
    <!--查数据-->
    @foreach ($test as $value)
        {{ $value->id }}
    @endforeach
</div>

<div id="pull_right">
    <!--分页写法-->
    <div class="pull-right">
        {{ $test->render() }}
    </div>
</div>

样式如下图:

原文地址:https://www.cnblogs.com/cxx8181602/p/9210705.html

时间: 2024-10-13 21:58:38

Laravel 自定义分页样式的相关文章

laravel自定义分页

laravel框架自带有分页处理类,并且与ORM模型结合,我们可以非常方便的使用这个分页,它提供了方便与给了一些扩展麻烦. 框架自带有三套分页显示模板,具体的可以修改\app\config\view.php配置文件中的'pagination' => 'pagination::slider-3'. 在这个配置中'pagination::slider-3'前面的pagination是指定要调用的分页处理类名,后台是给这个分页指定模板文件名,这几个模板都放在框架内部\vendor\laravel\fr

thinkphp 分页-自定义分页样式

0x01 tp分页类  /think/library/Think/Page.class.php 调用page类 $p = intval(I('get.p'));  //获取分页请求 $condition['xx'] =$xx; //设置查询条件 $m = M('xx'); $count = count($m->select()); //计算符合条件的数据总量 $page = new \Think\Page($count,10) //10条数据一页 $data = $m ->where($con

GridView自定义分页样式(上一页,下一页,到第几页)

今天要为网站做一个文章列表,发现GridView的分页样式很难看,于是结合网上的例子,自己做了一个.不是很美观,不过还是很实用的,先看下效果吧,如图(1). 图(1)GridView分页效果 自定义GridView的分页样式,使用的是GridView的  <PagerTemplate>元素.我们先看这段分页代码. 1 <PagerTemplate> 2 <br /> 3 <asp:Label ID="lblPage" runat="s

laravel 自定义分页 offset 和 limit 的使用

laravel 本身有一个自带的快速分页方法 paginate,只需要传入每页显示多少条数据就可以 了,但是如果想使用自定义从哪里开始呢,这时候就可以使用offset 和 limit 的组合,offset 设置从哪里开始,limit 设置想要查询多少条数据. Model::offset(10)->limit(10)->get() 上面的代码表示查询出第11-20条数据. 百牛信息技术bainiu.ltd发布与博客园

Laravel 自定义分页、可以调整、显示数目

{{-- 增加输入框,跳转任意页码和显示任意条数 --}} <ul class="pagination pagination-sm"> <li> <span data-toggle="tooltip" data-placement="bottom" title="输入页码" style=" padding: 3.5px; margin-top: 3px;"> 第 <

laravel自定义分页的实现案例offset()和limit()

这里我是用的layui的表格渲染 public function ShowQuestion(){ $count = DB::table('question')->get(); //查询总数 括号里面是数据表名 $page=$_GET['page']-1; $data = DB::table('question')->offset($page)->limit($_GET['limit'])->get(); return ['code'=>0 , 'msg'=>'数据获取成

php 数据分页类,可自定义多个分页样式

调用分页类的方法: // 测试分页 public function pageTestAction() { Load::load_class('getPage',DIR_BF_ROOT.'classes',0); $list = M('category')->field(array('id','catname','model'))->select(); $total = M('category')->findCount(); //总条数 $biao = isset($_GET['page'

laravel5.5中添加对分页样式的修改上一页和下一页

博客原文地址http://www.xiegaosheng.com/post/view?id=93; laravel自带的分页样式有点丑,laravel支持自定义样式的, 想把上一页和下一页显示成汉字而不是<<和>> 百度了一下都是去重写分页的函数render,于是打开了laravel分页的源码: render()和links()方法是支持传递视图的: 在views视图目录下创建common/pagination.blade.php文件:代码如下,只需要把laravel自带的defa

Laravel —— 特殊分页

项目中,分页经常会用到. Laravel 中也自带了分页功能. 但有些时候需要稍作修改,来满足自己的需求. 一.普通分页 1.控制器中,用 paginate() 方法. $users = DB::table('users')->paginate(15); 或简单分页 $users = DB::table('users')->simplePaginate(15); 2.blade 模板中,可直接用查询结果数据 {{ $users->links() }}.{{ $users->rend