enhanced-router
enhanced-router copied to clipboard
Enhanced Router is an extension to the Laravel 4 router and provides some enhanced functionality.
I have a controller route defined no group and it works fine. ``` php Route::controller('users', 'UserController'); ``` Here is the method signature ``` php public function getShow($id) { ``` When...
I'm trying to install enhanced route for laravel 4.2 but i still get error. Is it support laravel 4.2. Thank you in advance.
There are dependency version problem when updating to Laravel 4.1 does changing this could fix the problem? ``` "illuminate/support": "4.0.*", "illuminate/routing": "4.0.*" ``` to ``` "illuminate/support": "4.0.0", "illuminate/routing": "4.0.0" ```