Skip to content

Instantly share code, notes, and snippets.

@Xannn94
Last active March 14, 2016 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xannn94/e538a46ce2b868da7c4e to your computer and use it in GitHub Desktop.
Save Xannn94/e538a46ce2b868da7c4e to your computer and use it in GitHub Desktop.
Route::get('auth/login', 'Auth\AuthController@getLogin');
Route::post('auth/login', 'Auth\AuthController@postLogin');
Route::get('auth/logout', 'Auth\AuthController@getLogout');
// Registration routes...
Route::get('auth/register', 'Auth\AuthController@getRegister');
Route::post('auth/register', 'Auth\AuthController@postRegister');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment