vitorf7 / lv-loadmorepagination by vitorf7

Load More Pagination for Laravel. Allows to load an initial number of items and subsequent pages can load a different number of items
1,189
10
2
Package Data
Maintainer Username: vitorf7
Maintainer Contact: vf7development@gmail.com (Vitor Faiante)
Package Create Date: 2016-05-17
Package Last Update: 2022-11-04
Language: PHP
License: MIT
Last Refreshed: 2024-04-17 15:15:08
Package Statistics
Total Downloads: 1,189
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 10
Total Watchers: 2
Total Forks: 5
Total Open Issues: 0

Laravel Load More Pagination

Build Status

A package that will give you access to a LoadMorePagination trait where you can paginate your model's results with an initial number of items and then a different number of items on subsequent pages.

This package does not implement any paginator interfaces or anything like that it simply returns a similar array to a paginator with the usual information such as last_page, current_page, data, etc.

Usage

To install this package do the following:

composer require vitorf7/lv-loadmorepagination

Once installed you can use this in two ways. Either by imporating this into your Eloquent Model or using it in your Controller or Repository, etc.

This package has an initial load of 9 items and subsequent load of 3.

In a Model:

<?php

namespace App;

use VitorF7\LoadMorePagination\LoadMorePagination;

class Post extends Model
{
    use LoadMorePagination;
}

// in a controller action or something you can use it like so
Post::paginateLoadMore(); // Loads 9 on first page and 3 every page after that
Post::paginateLoadMore(8, 4); // Loads 8 on first page and 4 every page after that
Post::paginateLoadMore(4, 4); // Loads 4 on first page and 4 every page after that. However at this point you could just simply use Post::paginate(4). This package is better used when you need to load different amount of items from the first page

// You can use it after you do an eager load of relationship too. At least simple loads for now as it has not been tested with something more complex
Post::with('categories')->paginateLoadMore();

If you want to use it in a Controller, Repository, etc you need to pass 3 arguments.

  • 1st Argument is the inital load of items
  • 2nd Argument is the load of subsequent items
  • 3rd Argument is the Model you are trying to paginate

Like so:

<?php

namespace App\Http\Controllers;

use App\Http\Controllers\Controller;
use VitorF7\LoadMorePagination\LoadMorePagination;

class PostsController extends Controller
{
    use LoadMorePagination;

    public function index()
    {
        $posts = $this->paginatedLoadMore(9, 3, new Post);

        return view('posts.index', compact('posts'));
    }
}

If you do not pass a model you will get a VitorF7\LoadMorePagination\ModelClassRequiredException