If you ever created complex global scope constraint, you must have faced a challenge with defining r...
Pretty much every app needs decent search engine. Nowadays specialized engines like ElasticSearch ar...
Do you use Eloquent in your apps? It's simply fun to work with, right? I think the same, but after s...
I want to introduce nice and useful package for DB revisions. It works out of the box with Eloquent...
Explained here: http://laravel.io/bin/rr4QQ#8,44
Is it literally fixed custom price for each user? It seems a bit unreal, imagine you need to manage...
It's because your mutator is wrong and should look like this to work: public function setPasswordAtt...
Probably it won't change any soon and it is working for relations (while not for the attributes) bec...
Your relations are wrong, suggested key names on pivot table are wrong too. Here's what you should d...
The easiest way to fetch those far related models is this: $user = User::with('groups.projects')->...
The Laravel portal for problem solving, knowledge sharing and community building.