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...
Everything is explained here: http://laravel.com/docs/4.2/routing If you want the route to be execut...
Instead of overwriting delete() method, you could use model event as described here: http://laravel....
Try either one of these: 'level_id' => 'unique:devplans,level_id,NULL,id,building_id,' . Input::g...
You can add unique validation rule with additional fields: http://laravel.com/docs/4.2/validation#ru...
The Laravel portal for problem solving, knowledge sharing and community building.