diff --git a/app/Http/Controllers/SettingController.php b/app/Http/Controllers/SettingController.php index 3f71323..7f60aa2 100644 --- a/app/Http/Controllers/SettingController.php +++ b/app/Http/Controllers/SettingController.php @@ -21,8 +21,9 @@ class SettingController extends Controller abort(501); } - public function password() - { - abort(501); - } + // ( ◠‿◠ )☛ここに気づいたか・・・消えてもらう ▂▅▇█▓▒░(’ω’)░▒▓█▇▅▂うわあああああああ +// public function password() +// { +// abort(501); +// } } diff --git a/resources/views/setting/base.blade.php b/resources/views/setting/base.blade.php index 46ec3a3..f4a80fc 100644 --- a/resources/views/setting/base.blade.php +++ b/resources/views/setting/base.blade.php @@ -7,7 +7,7 @@
設定
プロフィール - パスワード + {{-- パスワード--}}
diff --git a/routes/web.php b/routes/web.php index 9edaa98..3645f36 100644 --- a/routes/web.php +++ b/routes/web.php @@ -34,7 +34,7 @@ Route::middleware('auth')->group(function () { Route::get('/setting/profile', 'SettingController@profile')->name('setting'); Route::post('/setting/profile', 'SettingController@updateProfile')->name('setting.profile.update'); Route::post('/setting/privacy', 'SettingController@updatePrivacy')->name('setting.privacy.update'); - Route::get('/setting/password', 'SettingController@password')->name('setting.password'); +// Route::get('/setting/password', 'SettingController@password')->name('setting.password'); }); Route::get('/info', 'InfoController@index')->name('info');