<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\HomeController;
use App\Http\Controllers\UserController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::get('/home', [HomeController::class, 'index'])->name('home');
Route::get('/users', [UserController::class, 'index']);
<?php
namespace App\Http\Controllers;
use App\Models\User;
class UserController extends Controller {
/**
* The attributes that are mass assignable.
*
* @var array
*/
public function index() {
$users = User::simplePaginate(5);
return view('users', compact('users'));
}
}
we can add next and previous link on pagination using simplePaginate() in laravel 6, laravel 7, laravel 8 and laravel 9 application. laravel provide new eloquent method simplePaginate() for adding simple pagination with only next previous button link.
If you also want to add pagination with next and previous link then follow bellow some step and make it done as like bellow screen shot:
Create Route:
In first step, we will create simple routes for getting users and view it, so let's add new route in web.php file:
routes/web.php
Route::get('users', 'UserController@index');
Create Controller:
Now, we will create new UserController with index() method. in index() we will write simple pagination code. so let's create as like bellow:
app/Http/Controllers/UserController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request;use App\User; class UserController extends Controller{ /** * The attributes that are mass assignable. * * @var array */ public function index() { $users = User::simplePaginate(5); return view('users', compact('users')); }}
Create View File:
In this last step, we will create simple blade file and display users with pagination. so let's add bellow code:
By Hardik Savani November 28, 2019 Category : LaravelPauseUnmuteLoaded: 0.36%FullscreenDo you want to add next previous button on pagination in laravel 6?, if yes then i will help you to create simple pagination with laravel 6. we will customize pagination link with only next and previous button in laravel 6.