Laravel 4.1中的模型问题
我有这个型号:
class Blog extends Eloquent {
protected $table = 'blog';
}
和控制器:
public function index(){
$posts = Blog::all();
return View::make('blog/index')->with('posts', $posts);
}
我已经做过artisan dump-autoload,但我总是得到:
error 404
我做了一些测试,将vars传递给视图并且它正在工作,但没有使用Blog模型。 真的无法弄清楚为什么,因为现在一切似乎都是正确的。
答案 0 :(得分:0)
回答,在迁移类中命名重复。