当我在应用了前缀的组路由下使用 route::resource 时,我得到一个“RouteNotFoundException”
例如我有这个
/// ROUTES FILE
$languages = array('gr','en');
$locale = \Request::segment(1);
if(in_array($locale, $languages)){
\App::setLocale($locale);
}else{
$locale = null;
App::setLocale("gr");
}
Route::group(array('before'=>'auth','domain' => 'app.domain.dev','prefix'=>"$locale"), function(){
Route::resource('invoices', '\ctrl\app\InvoicesController');
});
我收到这个错误
Symfony \ Component \ Routing \ Exception \ RouteNotFoundException 无法为命名路由“invoices.index”生成URL,因为这样的路由不存在。