Posts by Filipe Silva • 1 point
3 posts
-
0
votes0
answers47
viewsQ: scroll Infinite in Laravel js+css
Devs, I’m having a problem listing cards, at the moment I’m working with ul and li. i work with css to hide the horizontal scroll: body, html { height: 100%; } div.wrap { height: 100%; overflow:…
laravelasked Filipe Silva 1 -
0
votes0
answers25
viewsQ: Laravel - Problem with JOIN relationship
Dev, I passed my eloquent to JOIN queries, I was having trouble with duplicate lines in my code I was with more than 500 queries executed, with JOIN reduce to 14 queries, but my problem is a…
laravelasked Filipe Silva 1 -
0
votes0
answers58
viewsQ: How can I optimize a consultation in Laravel?
I have several linked tables and when I do a query it returns all query: Model: class Apontamento extends Model { public function user() { return $this->hasOne(\App\User::class, 'id', 'user_id');…