Create Laravel Auth

This commit is contained in:
2018-08-05 14:23:03 +08:00
parent 15325f103c
commit b7621addd3
8 changed files with 382 additions and 1 deletions

View File

@@ -41,3 +41,7 @@ Route::group(['prefix' => 'receiver'], function () {
// Route::get('/register', '');
// Route::post('/register', '');
// });
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');