How to send gzip encoded response from a restful service? return Response::make( $body, $st...
I've two registered routes: Route::get("/a", "MyController@foo"); Route::post(&q...
It is not a question of performance, you should avoid to get into loop-switch antipattern, just usin...
The way you generate the form should be ok. Form model is not an option for a form related to 100 re...
The problem is that filter are defined by routing that you are bypassing calling directly controller...
//take input from textarea $testos = Input::get("testi", ""); //explode string...
https://github.com/laravel/framework/blob/4.2/src/Illuminate/Html/FormBuilder.php The reason of this...
The Laravel portal for problem solving, knowledge sharing and community building.