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')); }