Does anyone know of any way in Laravel 4 which combines these 2 lines into one?
Route::get(\'login\', \'AuthControl
In laravel 5.1 this can be achieved by Implicit Controllers. see what I found from the laravel documentation
Route::controller('users', 'UserController');
Next, just add methods to your controller. The method names should begin with the HTTP verb they respond to followed by the title case version of the URI: