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
First of all your many-to-many relations should be defined with belongsToMany not hasMany. Next try...
The only thing that could be wrong there is the order in this part: $count = $query->count(); $fo...
For best user experience you could setup dictionary and use it with every search query. Then wheneve...
First off you can create a view in your DB that will hold concatenated game|title + video|title, thi...
Use Query Builder instead of Connection 'raw' select statement, then it will work. Meaning start lik...
The Laravel portal for problem solving, knowledge sharing and community building.