changed form to button only and updated web routes

This commit is contained in:
2020-08-07 12:18:01 -05:00
parent 7c9e5e8491
commit 6367b1593d
4 changed files with 4 additions and 56 deletions

View File

@@ -185,7 +185,7 @@ Route::group(['middleware' => ['auth']], function(){
Route::get('/supplychain/contracts/end', 'Contracts\SupplyChainController@displayEndSupplyChainContract');
Route::post('/supplychain/contracts/end', 'Contracts\SupplyChainController@storeEndSupplyChainContract');
Route::get('/supplychain/display/bids', 'Contracts\SupplyChainController@displaySupplyChainBids');
Route::post('/supplychain/display/newbid', 'Contracts\SupplyChainController@displaySupplyChainContractBid');
Route::get('/supplychain/display/newbid/{contractId}', 'Contracts\SupplyChainController@displaySupplyChainContractBid');
Route::post('/supplychain/display/newbid', 'Contracts\SupplyChainController@storeSupplyChainContractBid');
Route::post('/supplychain/delete/bid', 'Contracts\SupplyChainController@deleteSupplyChainContractBid');
Route::get('/supplychain/modify/bid', 'Contracts\SupplyChainController@displayModifySupplyChainContractBid');