0

Please how i can add paginate to my show method ? I have connect models and i need to have select by region and pagination.

    public function show(Tournament $tournament) {
    
     $tournament->load('region');

     return view('tournaments.show', compact('tournament')); }
Deepak Rai
  • 2,163
  • 3
  • 21
  • 36
Tom_hutka
  • 15
  • 4

1 Answers1

0

You can do sth. like this:

public function show(Tournament $tournament) {
    
    $tournament->load('region');

    return view('tournaments.show', [
        'tournament' => $tournament->paginate();
    ]);
}

Here you lazy eagerly loading region and then apply the pagination to your $tournament object.

codedge
  • 4,754
  • 2
  • 22
  • 38