最佳答案
我尝试在我的控制器中加载我的模型,并尝试这样做:
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();
}
在控制器中加载模型并返回其内容的正确方法是什么?