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
No, you can't do that. Laravel needs to know what to instantiate. Also Eloquent Collection relies on...
BelongsToMany relation is bugged and there is no way to choose only given columns with select. There...
You need where in and having count(distinct .. ) mix in SQL (MySQL). You can also do it with has in...
where( DB::raw( 'DATE(created_at)' ), Carbon\Carbon::now()->toDateString()) or with db function...
You can use $hidden property on the model. But I encourage you to use transformers when you output j...
The Laravel portal for problem solving, knowledge sharing and community building.