为什么这个简单的命名路由会出错
Route::get('/', array('as' => 'dashboard', function()
{
return View::make('hello');
}));
我也用控制器而不是回调进行了测试,但总是一样,错误是:
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
我正在使用 PHP 5.4.x 测试代码,但我认为它与 PHP 无关,我是否遗漏了什么?