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
// Item model public function images() { return $this->belongsToMany('Image','item_image')->...
The problem here lies in the MySQL (correct me if you use other db), because you can't reference der...
You can hide pivot object from toJson() method on the related model and tweak the relationship defin...
By selecting only 'active' you make it impossible to perform update. Eloquent doesn't know the key t...
The Laravel portal for problem solving, knowledge sharing and community building.