在本地开发项目后转移到主机。 一切正常,除了前端部分不起作用的事实。在后端一切正常!
Route::group( ['middleware'=>['web'] ], function() {
Route::match(['get','post'], '/', ['uses'=>'IndexController@execute', 'as'=>'home']);
Route::auth();
});
我的路线:
for backend I have rout like this:
Route::group( [ 'prefix'=>'admin', 'middleware'=>['auth'] ], function() {
.....
});
没有$ _POST。在当地一切都很好,在后端一切正常!
<form class="form-horizontal" name="contact_us_home_form" action="{{ route('home') }}" method="post" novalidate>
<input type="hidden" name="_token" value="{{ csrf_token() }}">
在标准中查看全部。我使用表格:
{{1}}
...
有什么问题?