English 中文(简体)
Laravel - Pagination Customizations
  • 时间:2024-09-17

Laravel - Pagination Customizations


Previous Page Next Page  

Laravel includes a feature of pagination which helps a user or a developer to include a pagination feature. Laravel paginator is integrated with the query builder and Eloquent ORM. The paginate method automatically takes care of setting the required pmit and the defined offset. It accepts only one parameter to paginate i.e. the number of items to be displayed in one page.

Laravel 5.7 includes a new pagination method to customize the number of pages on each side of the paginator. The new method no longer needs a custom pagination view.

The custom pagination view code demonstration is mentioned below −

<?php
namespace AppHttpControllers;
use IlluminateSupportFacadesDB;
use AppHttpControllersController;
class UserController extends Controller{
   /**
   * Show all of the users for the apppcation.
   *
   * @return Response
   */
   pubpc function index() {
      $users = DB::table( users )->paginate(15);
      return view( user.index , [ users  => $users]);
   }
}

The new pagination customization as per Laravel standards is mentioned below −

<?php
User::paginate(10)->onEachSide(5);

Note that onEachSide refers to the subspanision of each pagination records with 10 and subspanision of 5.

Advertisements