Does anyone know of any way in Laravel 4 which combines these 2 lines into one?
Route::get(\'login\', \'AuthControl
Right, I'm answering using my mobile, and so I haven't tested this (if I remember correctly, it isn't in the documentation either). Here goes:
Route::match('(GET|POST)', 'login',
'AuthController@login'
);
That should do the trick. If it doesn't, then Taylor had it removed from the core; which would then mean that nobody was using it.