プロフィール設定ページを作ろう

This commit is contained in:
shibafu
2018-10-19 00:56:29 +09:00
parent ef563f8641
commit 4654962aac
5 changed files with 84 additions and 1 deletions

View File

@@ -37,3 +37,7 @@ Route::get('/info/{id}', 'InfoController@show')->where('id', '[0-9]+')->name('in
Route::redirect('/search', '/search/checkin', 301);
Route::get('/search/checkin', 'SearchController@index')->name('search');
Route::get('/search/related-tag', 'SearchController@relatedTag')->name('search.related-tag');
Route::redirect('/setting', '/setting/profile', 301);
Route::get('/setting/profile', 'SettingController@profile')->name('setting');
Route::get('/setting/password', 'SettingController@password')->name('setting.password');