我只是發展與下面的代碼從數據庫
Student.php(控制器頁)
class Student extends BaseController
{
public $restful=true;
public function index()
{
return View::make('student.index')
->with('students',Student::all());
}
}
Student.php(型號頁)
一個Laravel CRUD應用程序中選擇數據Laravel CRUD錯誤class Student extends Eloquent
{
public static $table='students';
}
index.blade.php(查看頁)
<h1>Student home page</h1>
<ul>
@foreach($students as $student)
<li>{{ $student -> name}}</li>
@endforeach
</ul>
routes.php文件
Route::get('test',array('uses'=>'[email protected]'));
的我一點像本地主機/ laravel /公/測試瀏覽器
它顯示錯誤,如
Method [all] does not exist.
我有表像,即 '學生' 和字段爲
- id
- name
- class
- division
任何一個請幫助我...
能否請您發佈確切的錯誤信息 – Laurence
BadMethodCallException 方法[全部]不存在。 – user3773574
你運行'composer dump-autoload'嗎? – Laurence