LaravelのRouterでドットシンタックスで指定する’name’が登録されない。

解決した方法。

//routes/web.php
Route::post('item/import/confirm',['as'=>'item.import.confirm','uses'=>'ItemController@importConfirm']);

‘as’ で指定する。実行先は ‘uses’

ルート一覧確認方法

$ php artisan route:list