▶CRUD
목록 : public function index() { } /post GET
작성 : public function create() { } /post/create GET
DB넣는 일 : public function store() { } /post POST
목록에서 post출력 : public function show($id) { } /post/{postId} GET
수정 : public function edit($id){ } /post/{postId}edit GET
업데이트 : public function update($id){ } /post/{postId} PUT|PATCH
삭제 : public function destroy($id){ } /post/{postId} DELETE
▶tinker콘솔
str_singular(studly_case('article_categories'))
▶Helper function
route('라우트 이름') : 라우트 이름에 해당하는 url을 생성
redirect('url') : 해당 경로로 리다이렉트
redirect()->route('라우트이름') : 해당 라우터 이름의 url로 이동
▶엘로퀀트 ORM , 쿼리빌더
App\Project::all();