Laracon EU is the official European Laravel event. Come learn about the state of the industry while...
Would you like to discuss any ideas in this video? This is a great place to do so! Learn about utili...
Would you like to discuss any ideas in this video? This is a great place to do so! Decoupling the Mo...
http://www.youtube.com/watch?v=3uV3ngl1Z8g&feature=youtu.be&a Definitely watch this.
What is Single Table Inheritance? I saw a post by Kapil Verma where he shared his STI base class. I...
You don't want to duplicate code. That makes sense, you'd have to change multiple places if the code...
With debugging non-syntactic errors it's either the logic, data, or you're working on the wrong file...
@zenry I agree that the parent::save() should be returned. This is something that I've since impleme...
Try: DB::table('groups') ->where('code', '=', $code) ->set('members', DB::raw('concat(...
It's one very simple query and you shouldn't be bothering caching this because it's the lowest perfo...
The Laravel portal for problem solving, knowledge sharing and community building.