Adding User login and registration

This commit is contained in:
2018-09-09 01:03:41 -03:00
parent e57b5e7206
commit 112d3dc44e
9 changed files with 417 additions and 1 deletions

View File

@@ -18,4 +18,7 @@ Route::get('/', function () {
Route::get('/product', 'ProductController@index');
Route::get('/product/{product}', 'ProductController@show');
Route::get('/item', 'ItemController@index');
Route::get('/item/{item}', 'ItemController@show');
Route::get('/item/{item}', 'ItemController@show');
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');