尝试显示我的网站时出现以下错误:
PHP致命错误:Class' Route'找不到 第14行/home/jillumin/public_html/muse/app/routes.php
路线如下所示:
Route::resource('ideas','IdeaController');
控制器在这里:
class Idea_Controller extends BaseController {
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
//get all the ideas
$ideas = idea::all();
// load the view and pass the ideas
return View::make('muse.index');
}
}
有什么想法吗?
答案 0 :(得分:0)
您要么路由您的routes.php文件,要么在config / app.php中为路由禁用别名。您也可以尝试运行'composer dump'来重建Composers autoload_classmap.php。