该路由不支持GET方法。支持的方法:POST。

时间:2019-07-23 18:05:32

标签: laravel-5.8

  

这是我的路线

Route::post('bus_oil_filling_report', 'OilFillingController@bus_oil_filling_report')->name('bus_oil_filling_report');

这是表格

<form method="post" action="{{ url('admin/bus_oil_filling_report') }}" >
                <input name="_token" type="hidden" value="{{ csrf_token() }}"/>
  

我看到很多解决方案,但找不到最佳解决方案。我不知道在哪里   是错误的。我检查了很多次。

1 个答案:

答案 0 :(得分:0)

  

有时候,您必须先在GEt中使用路由,然后在POST中使用

e.x before your route you have to use
Route::get('filling_report', 'OilFillingController@filling_report')->name('filling_report');
  

然后在您的视图中。