기존 웹 개발방식브라우저요청 => HTML 반환 return view('posts.index',["posts"=>$posts]); webroutes/web.php api 개발방식모바일 앱React/Vue 프론트엔드외부 서비스 연동return response()->json($posts); api routes/api.php 기본적으로 /api 를 추가로 가져간다. ** 11 버젼부터는 자동생성이 아닙니다.** starter 구조가 많이 간소화됐습니다.** 사용을 위해서 bootstrap/app.php->withRouting( web: __DIR__.'/../routes/web.php', commands: __DIR__.'/../routes/console.php', health: '/u..