Does anyone know of any way in Laravel 4 which combines these 2 lines into one?
Route::get(\'login\', \'AuthControl
You could try the following:
Route::controller('login','AuthController');
Then in your AuthController class implement these methods:
AuthController class
public function getIndex(); public function postIndex();
It should work ;)