Paginate Method Example in Laravel 8

Websolutionstuff | Jun-28-2021 | Categories : Laravel

In this post i will share you information about paginate method example in laravel 8.

As we know laravel provide many paginate method for custom pagination in laravel 8, Here, i will give you information about laravel paginate function, and we will see how to use pagination in laravel with example.

Using this method you can simply customise your pagination in laravel 8,below paginator instance provides additional pagination information.

 

$paginator->count()    

Using this function you can get number of items of the current page.

"count:7" // no of count

 

$paginator->total()

This function use for the total number of matching items in the data store. It is not available when we are use simplePaginate in laravel.

 

$paginator->setPageName($name)

It will help you to set query string variable used to store the page.

Illuminate\Pagination\Paginator {#1290 ▼
  #hasMore: true
  #items: Illuminate\Database\Eloquent\Collection {#1288 ▶}
  #perPage: 7
  #currentPage: 1
  #path: "http://localhost:8000"
  #query: []
  #fragment: null
  #pageName: "page"
  +onEachSide: 3
  #options: array:2 [▼
    "path" => "http://localhost:8000"
    "pageName" => "page"
  ]
}

 

 

$paginator->getPageName()

This function get the query string variable used to store the page. and also get the page which is set by using setPageName() function.

"page"

 

$paginator->firstItem()

Using this method we can get the result number of the first item in the results.

1 //get first item

 

$paginator->hasMorePages()

It will help you to check if there are more items in the data store. In this function you will get true or false value. if you have more pages then it will return true otherwise get false value.

true // get boolean value

 

$paginator->getUrlRange($start, $end)

This method create a range of pagination URLs.

array:5 [▼
  1 => "http://localhost:8000?page=1"
  2 => "http://localhost:8000?page=2"
  3 => "http://localhost:8000?page=3"
  4 => "http://localhost:8000?page=4"
  5 => "http://localhost:8000?page=5"
]

 

$paginator->currentPage()

You can get the current page number. in this function you will get current page value like 1,2 etc.  

2 // get current page value 

 

$paginator->hasPages()

You can check if there are enough items to split into multiple pages.

true // get boolean value

 

$paginator->lastItem()

Get the result number of the last item in the results. in your data getting last no record using this fuction.

7 // get last record

 

$paginator->getOptions()

Get the paginator options.

array:2 [▼
  "path" => "http://localhost:8000"
  "pageName" => "page"
]

 

$paginator->items()

Get the items for the current page. items() function return details of your current page like total no of records in currenct page with it's details in array.

array:7 [▼
  0 => App\Models\Post {#1300 ▼
    #table: "posts"
    #guarded: []
    #connection: "mysql"
    #primaryKey: "id"
    #keyType: "int"
    +incrementing: true
    #with: []
    #withCount: []
    #perPage: 15
    +exists: true
    +wasRecentlyCreated: false
    #attributes: array:14 [▶]
    #original: array:14 [▶]
    #changes: []
    #casts: []
    #classCastCache: []
    #dates: []
    #dateFormat: null
    #appends: []
    #dispatchesEvents: []
    #observables: []
    #relations: []
    #touches: []
    +timestamps: true
    #hidden: []
    #visible: []
    #fillable: []
  }
  1 => App\Models\Post {#1301 ▶}
  2 => App\Models\Post {#1302 ▶}
  3 => App\Models\Post {#1303 ▶}
  4 => App\Models\Post {#1304 ▶}
  5 => App\Models\Post {#1305 ▶}
  6 => App\Models\Post {#1306 ▶}
]

 

$paginator->nextPageUrl()

 Using this method you can get the URL for the next page.

"http://localhost:8000?page=2"

 

$paginator->previousPageUrl()

Get the URL for the previous page. if current page is 1 then previous url get null value.

"http://localhost:8000?page=1"

 

$paginator->perPage()

The number of items to be shown per page.

7 // total no of record in per page

 

$paginator->lastPage()

Get the page number of the last available page. (Not available when using simplePaginate).

 

$paginator->onFirstPage()

Determine if the paginator is on the first page.

false // return boolean value

 

$paginator->url($page)

Get the URL for a given page number.

"http://localhost:8000?page=1"

 

Recommended Post
Featured Post
How To Install LAMP Server In Ubuntu 22.04
How To Install LAMP Server In...

In today's digital landscape, hosting dynamic websites and powerful web applications is essential for individuals an...

Read More

Jul-31-2023

Laravel 11 API Authentication using Laravel Passport
Laravel 11 API Authentication...

Hello, laravel web developers! In this article, we'll see how to API authentication in laravel 11 using a passp...

Read More

Jun-28-2024

Bootstrap DateTimePicker Example
Bootstrap DateTimePicker Examp...

In this post i will show you how to implement bootstrap datetimepicker with example, bootstrap 4 datetimepicke...

Read More

Apr-02-2021

Laravel 8 Form Validation Example
Laravel 8 Form Validation Exam...

In this article, we will see the laravel 8 form validation example. form validation in laravel is a very common fun...

Read More

Oct-10-2020