Hello, i am using Laravel's new feature FormRequest and every thing is nice, input validates, permis...
Hello, so i am creating value Money( 500, Currency('EUR') ). What would be the best approach to vali...
Hello, i am creating web page, it will have multiple ways to access, via browser, api and cli. To pr...
I'm learning DDD pattern and signle responsability and what not, and i found one thing that repeats...
I am about to create new project and i think events are the best fit for this job. But what should i...
I am now dealing with the same problem. And i am using events for that. Listener example: Event::lis...
This would be one approach: View presenters Or, views are just plain php, so you can just do <?ph...
There isnt such thing, each request can have views as much as needed, or none (POST/DELETE requests)...
When creating route laravel will check if there are any required parameters, anything eles will be a...
$view = View::make('view', $data); $viewData = $view->getData(); This should work.
The Laravel portal for problem solving, knowledge sharing and community building.