我的资源路由如下:
Route::resource('special', 'SpecialController');
和HTML表单:
<?=Form::open(array('route' => 'special.store', 'novalidate' => "novalidate", 'method' => 'post', 'files' => true))?>
当我提交表格时,我会收到通知:
NotFoundHttpException in RouteCollection.php line 161:
提交后的网址为:
/specials/create
为什么将表单提交到网址specials
?