LoginSignup
2
0

More than 3 years have passed since last update.

Laravelのページネーションについて

Posted at

Laravelのページネーションについてまとめました。

   public function index()
   {
      $tweets = Tweet::all()->paginate(30);
     //30個ごとのtweetが表示される。
      return view('tweets.index', ['tweets' => $tweets);
   } 

コントローラーはこれだけで、

{{ $tweets->links() }}

ビューファイルにはこれを書けば簡単いにページネーションができます。

スクリーンショット 2020-04-03 22.08.28.png

2
0
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
2
0