Home Laravel Laravel Pagination Example

Laravel Pagination Example

by therichpost
0 comments
Laravel 7.2 routing with route group auth guard check with prefix

Hello to all, welcome to therichpost.com. In this post, I will tell you, Laravel Pagination Example. Like I always say that laravel is the best Mvc php framework.

laravel has default pagination and Laravel’s paginator is integrated with the query builder.

Here is the simple and easy way to create laravel pagination:
//Controller code
<?php

namespace App\Http\Controllers;

use Illuminate\Support\Facades\DB;
use App\Http\Controllers\Controller;

class UserController extends Controller
{
    /**
     * Show all of the users for the application.
     *
     * @return Response
     */
    public function index()
    {
        $users = DB::table('users')->paginate(15);

        return view('user.index', ['users' => $users]);
    }
}


//user View

<div class="container">
    @foreach ($users as $user)
        {{ $user->name }}
    @endforeach
</div>

{{ $users->links() }}

//Route File Code:
Route::get('users', function () {
    $users = App\User::paginate(15);

    $users->withPath('custom/url');

    //
});

 

laravel-paginate

if you have any query related this post then please do ask.

You may also like

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.