1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel ペジネーションリンクにクエリ文字列を追加する

Last updated at Posted at 2022-02-18

#問題
クエリ文字列を使った検索結果等の一覧表示でペジネーションを使う際、2ページ目以降は未記入の表示になってしまう。

これが1ページ目なら、、、 image.png
これが**2ページ目** image.png

原因は「クエリ文字列が次ページに繋げられていない」みたいです。

#解決法
###1.appendsメソッドの使用
appendsメソッドを使うことで、ぺジネーションリンクに指定のクエリ文字列を共通で渡すことができます。

使用例
use App\Models\Board;

Route::get('/boards', function () {
    $board = Board::paginate(15);

    $boards->appends(['sort' => 'votes']);

    //
});

###2.withQueryStringメソッドの使用
withQueryStringメソッドを使うことで、ぺジネーションを利用しているリクエストのクエリ文字列をすべて渡すことができます。

使用例
$boards = Board::paginate(15)->withQueryString();

自分の場合はこのメソッドで万事解決しました。

#参考サイト
Laravel 8.X ぺジネーション クエリ文字列の追加

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?