9
Eloquent 모델에서 메서드를 호출 할 때 '비 정적 메서드를 정적으로 호출해서는 안됩니다'라는 메시지가 나타나는 이유는 무엇입니까?
내 컨트롤러에 내 모델을로드하려고 시도하고 이것을 시도했습니다. return Post::getAll(); 오류가 발생했습니다 Non-static method Post::getAll() should not be called statically, assuming $this from incompatible context 모델의 기능은 다음과 같습니다. public function getAll() { return $posts = $this->all()->take(2)->get(); } 컨트롤러에서 모델을로드 한 다음 내용을 반환하는 올바른 방법은 무엇입니까?