模板类不能在路由中使用

在看《Getting Started with Laravel 4》
其中一段
Route::get('/', function(){
return Redirect::to('cats');
});

Route::get('cats', function(){
$cats = Cat :: all();
return View :: make('cats.index')->with('cats',$cats);
});
我在models中定义了一个Cat类,但是跑的时候报Class 'Cat' not found,求解····
已邀请:

一介文夫

赞同来自:

已解决,自己弱智,忽略我,php开始标记居然没打全

要回复问题请先登录注册