1
testeController.php
$jogos = DB::select("select * from jogo where id_u ='$id_u'");
This is the code I wish to page in View
using blade
game.blade.php
{!! $jogos->links() !!}
$jogos = DB::select("select * from jogo where id_u ='$id_u' ")->paginate(2);
I’ve tried, but it doesn’t work.