PHP code example of michaloravec / laravel-paginateroute
1. Go to this page and download the library: Download michaloravec/laravel-paginateroute library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
michaloravec / laravel-paginateroute example snippets
return [
/*
|--------------------------------------------------------------------------
| Paginate Mode
|--------------------------------------------------------------------------
|
| This option controls the default mode that will be used to paginate
| route for your application. By default, the normal mode is used;
| however, you remain free to modify this option if you wish.
|
| Supported: "normal", "dash", "simple"
|
*/
'mode' => 'normal',
];
// app/Providers/RouteServiceProvider.php
use PaginateRoute;
// ...
public function boot()
{
PaginateRoute::registerMacros();
parent::boot();
}