Does anyone know of any way in Laravel 4 which combines these 2 lines into one?
Route::get(\'login\', \'AuthControl
You can combine all HTTP verbs for a route using:
Route::any('login', 'AuthController@login');
This will match both GET and POST HTTP verbs. And it will also match for PUT, PATCH & DELETE.
GET
POST
PUT
PATCH
DELETE