1

プレフィックスが適用されたグループルートで 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 を生成できません。そのようなルートは存在しません。

4

0 に答える 0