我想從表中獲取「 - > find(X)」或「 - > where」的行,但是我得到錯誤回報。我想我失去了一些東西,但我不知道是什麼。Laravel 4 - 方法[where]不存在
<?php
class SnippetsController extends BaseController {
public $restful = true;
public function index($id)
{
$snippet = SnippetsController::where('id', '=', 11)->get();
我試着用find,但注意到有幫助。
$snippet = SnippetsController::find(11);
帶「 - > get」而沒有。但注意到作品。我確實在表格中有「11」id,這個錯誤似乎與它有關。
也許我需要延長班級的口才?如果是這樣,我如何保持BaseController在它之上?
謝謝!
錯誤:
BadMethodCallException Method [find] does not exist.
你可能應該在模型上調用它... – kalley