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
If it's ver 4.2, then in case you don't use SoftDeletingTrait in your model, you call forceDelete me...
Then you'd probably define protected $primaryKey on the model, what means, that route model binding...
$servicecase->actions() // with () in order to work with the query, not collection ->orderby('...
You must distinguish property call from method call on the relation: // dynamic property call $model...
Model::find($id); returns single model, not a collection that you'd like to loop through. Also use...
The Laravel portal for problem solving, knowledge sharing and community building.