1) 프로젝트 진행도가게 CRUD 구현가게 생성가게 수정가게 단건 조회(메뉴 같이 조회)가게 이름 검색(이름으로 검색히 연관된 가게 다 조회)가게 페업메뉴 CRUD 구현메뉴 생성 (1일차)메뉴 삭제메뉴 수정 (2일차)장바구니 (쿠키 활용)한 번에 주문 가게 단건 조회 (@Service) public StoreMenuResponseDto findStore(Long storeId, User loginUser) { // 가게 Id 확인 Store findStore = storeRepository.findByStoreOrElseThrow(storeId); if(findStore.getStatus() == StoreStatus.CLOSURE){ if(lo..