feat: add update user update method route.

This commit is contained in:
weichien
2021-05-17 17:19:30 +08:00
parent 5172e146e1
commit 5376a2b784
+1
View File
@@ -37,5 +37,6 @@ Route::group(['prefix' => 'account', 'namespace' => 'Accounts', 'as' => 'account
Route::group(['prefix' => 'user', 'as' => 'user.'], function () {
Route::post('/show', 'FetchUserController@fetch')->name('show');
Route::get('/list', 'ListUsersController@list')->name('list');
Route::put('/update/{id}', 'UpdateUserController@update')->name('update');
});
});