catlane/laravel-model-page

v1.0 2023-08-02 08:54 UTC

This package is auto-updated.

Last update: 2025-03-01 00:40:34 UTC


README

使用方法

在Model中 use PageTraits 即可

<?php

namespace App\Models;
use Catlane\LaravelModelPage\Models\Traits\PageTraits;

class AddressModel extends Model
{
    use PageTraits;//
    protected $table = 'address';
}

返回参数

{
	"data": [{
		"id": 4,
		"uid": 1
	}],
	"total": 4,
	"page_total": 3,
	"now_page": "1",
	"limit": "3",
	"last_page": 2
}

参数注解

参数名 参数注解
total 数据总数量
page_total 当前页数据数量
now_page 当前页码
limit 当前分页数量
last_page 总页码