Laravel pagination links with query string

Created at 30-Aug-2021 , By samar

Laravel pagination links with query string

We will use programming in this lesson to attempt to solve the "Laravel pagination links with query string".

You can pass query string to pagination link by appends() method to display the filtered data with pagination.
  • Pagination link with query string in laravel view

    {{ $users->appends(['keyword' => request()->get('keyword')])->links() }}
    

    You can displayed filtered records with query string using pagination. 

    On click pagination link, It will create url like http://localhost:8000/search?keyword=value&page=2 which helps you to display the filttered data with pagination.

  • Pass query string with pagination in laravel controller

    //routes\web.php
    use App\Http\Controllers\HomeController;
    Route::get('/pagination-with-query-string', [HomeController::class, 'getRecords']);
    
    //app\Http\Controllers\HomeController.php
    use App\Models\User;
    public function getRecords(){
        $users = User::select('*')->paginate(10);
        $users = $users->appends(['keyword'=>'value']);
        return view('search')->with(['users'=>$users]);
    }
    
    //resources\views\search.blade.php
    <table>
        @foreach ($users as $user)
        <tr>
            <td> {{ $user->name }}  </td>
        </tr>
        @endforeach
    </table>
    {{ $users->links() }}
    

    You can add query string to URL in laravel using appends() method in controller file. 

Related Queries

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.