If you had defined a RESTful controller in routes.php
Route::controller('users', 'UserController');
and the following functions in the UserController class
public function getLogin() { ... }
public function postLogin() { ... }
Do we even need to define Route::post('user/login', 'UserController@postLogin') anymore?