2
I need to return the last 10 records to a view..
return view('home.home', [
'data' => $this->sale->get(), //aqui eu quero pegar os 10 últimos
'nav' => 'dashboard'
]);
There’s some Eloquent method that does that?
2
I need to return the last 10 records to a view..
return view('home.home', [
'data' => $this->sale->get(), //aqui eu quero pegar os 10 últimos
'nav' => 'dashboard'
]);
There’s some Eloquent method that does that?
Browser other questions tagged laravel laravel-5 laravel-eloquent
You are not signed in. Login or sign up in order to post.
It worked, thank you, I will accept the answer as soon as the system allows
– Felipe Paetzold
The only thing is that to bring the last I put in order ^^
– Felipe Paetzold
Changed to your comment @Felipepaetzold!!!
– novic