我有一个
路由.php
我的插件目录中的文件有很多路由规则,例如它的一部分是:
# global routes for buy and sell
Route::post('loadgroups/','Imis\Accounting\Controllers\SaleFactors@loadGroups');
Route::post('loadproducts/','Imis\Accounting\Controllers\SaleFactors@loadProducts');
Route::post('mobile/','Imis\Accounting\Controllers\SaleFactors@mobile');
Route::post('cashcredit/','Imis\Accounting\Controllers\SaleFactors@calcCashCredit');
我的问题是所有路线都正常工作,除了最后一条抛出
404 未找到
有没有关于这个问题的想法以及如何解决它!?谢谢你。