Posts by Jorge Roberto • 75 points
3 posts
-
0
votes3
answers663
viewsA: Keep selected option dynamically loaded
Pass a parameter through the URL. And recover via get and check in Javascript if there is an option from select equal to the value recovered by get.
-
1
votes1
answer289
viewsA: Eloquent + Object carrying itself
You want to return the object that has the result of the query after having made the query ? if that’s why you do not create a method within the model: public function SessionByToken($token){ return…
-
6
votes2
answers288
viewsQ: How does Laravel 4 cache queries work?
I’m trying to cache my query, but I don’t know how to recover the data later. Another question: when the number of rows in the database increases, it automatically caches the query, or every time I…