ctsoft/laravel-pretty-pagination

Pretty pagination URLs for Laravel.

Installs: 1 601

Dependents: 0

Suggesters: 0

Security: 0

Stars: 17

Watchers: 2

Forks: 7

Open Issues: 1

pkg:composer/ctsoft/laravel-pretty-pagination

v1.2.0 2023-09-12 22:26 UTC

This package is auto-updated.

Last update: 2025-09-24 12:14:53 UTC


README

This package generates pretty pagination URLs:

http://localhost/users/page/2

Install

Install this package via Composer:

composer require ctsoft/laravel-pretty-pagination

Usage

To generate pretty URLs simply call the paginate() macro on your routes:

Route::get('/users', ...)->name('users')->paginate();

If you wan't to change the prefix (default is page):

Route::get('/users', ...)->name('users')->paginate('seite');

Or if you don't want to use any prefix:

Route::get('/users', ...)->name('users')->paginate(null);

Notes

  • The route must have a name
  • The paginate() macro must be called as last

Security

If you discover any security related issues, please email security@ctsoft.de instead of using the issue tracker.

License

This package is open-sourced software licensed under the MIT license.