modify bids

This commit is contained in:
2019-04-29 00:31:27 -05:00
parent 55fa5cc67d
commit 7ea1ca1a6d

View File

@@ -186,7 +186,7 @@ class ContractController extends Controller
public function displayModifyBid($id) {
//With the bid id number, look up the bid in the database to get the contract information
$bid = Bid::where(['id' => $id])->get();
dd($bid);
//Retrieve the contract from the database
$contract = Contract::where(['id' => $bid->contract_id])->get()->toArray();