Does anyone know of any way in Laravel 4 which combines these 2 lines into one?
Route::get(\'login\', \'AuthControl
As per the latest docs, it should be
Route::match(['get', 'post'], '/', function () { // });
https://laravel.com/docs/routing