Skip to content

Instantly share code, notes, and snippets.

@pipethedev
Created June 18, 2020 09:30
Show Gist options
  • Select an option

  • Save pipethedev/c1a19cc07ae1a850aa0f8f9773de4cdc to your computer and use it in GitHub Desktop.

Select an option

Save pipethedev/c1a19cc07ae1a850aa0f8f9773de4cdc to your computer and use it in GitHub Desktop.
<?php
Route::group(['prefix' => 'auth', 'namespace' => 'Auth'], function(){
Route::post('signin', 'SignInController');
Route::get('login', 'SignInController')->name('login');
Route::post('signout', 'SignOutController');
Route::get('me', 'MeController');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment