1. php artisan make:auth 명령어를 실행한다. 2. views>auth, layouts>app.blade.php, web.php안에 Auth::routes() 자동으로 생성된다. 3. http://127.0.0.1:8000/login 페이지가 자동으로 생성되어있다. 4. http://127.0.0.1:8000/register 페이지가 자동으로 생성되어있다. 5. 로그인이 필요한 페이지에 로그인구현 기능 넣기. Middleware groups may be assigned to routes and controller actions using the same syntax as individual middleware. Again, middleware groups make it more conv..