Hello, I have a slight problem with route caching when using closures in the routes file. My routes....
Hi, In Laravel 4.2, I was able to load a package only for my local development in config/local/app.p...
I didn't quite understand what you wanted to say. If you don't want a controller to use those parame...
Try using: Route::get('setting/{id?}', function($key,$name,$id = null) { if($id) {...
Try using this route: Route::get('myroutingsolver', array('uses'=>'MyController@solver')); In My...
as @tkprocat said required_with and required_without should work: $input = Input::all(); $rules = ar...
The Laravel portal for problem solving, knowledge sharing and community building.