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

This commit is contained in:
shibafu
2019-01-19 00:12:10 +09:00
parent ef563f8641
commit 4654962aac
5 changed files with 84 additions and 1 deletions
@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class SettingController extends Controller
{
public function profile()
{
return view('setting.profile');
}
public function password()
{
abort(501);
}
}