open contracts

This commit is contained in:
2020-08-07 12:23:36 -05:00
parent d0c16d60cd
commit ea75ac6d25
2 changed files with 4 additions and 2 deletions

View File

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