We have PHP 7 on the way. Laravel is quite ambitious when it comes to support for new PHP versions,...
I'm trying to load some view in Laravel 5.1 exception handler (/app/Exceptions/Handler.php). In my r...
I'd like to be able to have multiple dynamic routes that can interrupt each other. For example, I ha...
Guys, do you always use Controller suffix in controller classes names? I do, but I'm now thinking if...
I have a problem with php artisan app:name [name] command on fresh instance of Laravel 5.1. When I r...
Take a look: http://stackoverflow.com/questions/25559558/how-can-i-access-attributes-using-camel-cas...
I always try to avoid raw queries too :) Plus, subqueries are a lot better than new queries.
If you'd like to avoid subqueries, you can use a query like that: SELECT `characters`.*, COUNT(`tags...
Does Auth::attempt($user) return true?
I didn't test it, but how about something like this? $tags = explode(',', Input::get('tags')); fore...
The Laravel portal for problem solving, knowledge sharing and community building.