Auth Setup

This commit is contained in:
2018-03-30 08:08:32 -04:00
parent dd5fd9cc3a
commit 828a54b569
8 changed files with 390 additions and 12 deletions

View File

@ -27,3 +27,7 @@ Route::group(['middleware' => 'auth'], function() {
Route::get('updaterecord', [ 'uses' => 'PagesController@updaterecord']);
Route::post('updaterecord', [ 'uses' => 'PagesController@updaterecord']);
});
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');