I have a query that counts rows in a table that equal 5. For some reason it is running multiple time...
Not sure what happened. Maybe a recent update? I push my code changes to my public environment from...
I have a view in (inbox/pagination.blade.php) Here is the contents @if($paginator->getLastPage()...
I am building a specific kind of messaging system. A user can message a user. A user can message a c...
( cross posted @laracasts too, just want you guys to check this out http://goo.gl/c0uc1S ) Just foun...
I personally do not want to mess with the headache of converting and displaying timezones properly s...
are you using the same [mail/mail queue] function you use during user registration email sending? di...
Figured it out :) $c = Company::where('active','=',1)->whereHas('user', function($q) { $q->wh...
$c = Company::whereHas('user', function($q) { $q->whereHas('group', function($q) { $q->whe...
not sure where to start on that. read somewhere that whereHas doesn't play nice with nested relation...
The Laravel portal for problem solving, knowledge sharing and community building.