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

@@ -216,13 +216,7 @@ class SupplyChainController extends Controller
/**
* Display the new bid on a supply chain contract page
*/
public function displaySupplyChainContractBid(Request $request) {
$this->validate($request, [
'contract_id' => 'required',
]);
$contractId = $request->contract_id;
public function displaySupplyChainContractBid($contractId) {
return view('supplychain.forms.enterbid')->with('contractId', $contractId);
}