diff --git a/app/Http/Controllers/Contracts/SupplyChainController.php b/app/Http/Controllers/Contracts/SupplyChainController.php index 4d0f2c32b..f8e6c9f87 100644 --- a/app/Http/Controllers/Contracts/SupplyChainController.php +++ b/app/Http/Controllers/Contracts/SupplyChainController.php @@ -319,7 +319,7 @@ class SupplyChainController extends Controller ])->select('bids')->first(); //Increment the number of bids - $numBids = $num->bid + 1; + $numBids = $num->bids + 1; //Update the database SupplyChainContract::where([ @@ -360,7 +360,7 @@ class SupplyChainController extends Controller ])->select('bids')->first(); //Decrement the number of bids - $numBids = $num->bid - 1; + $numBids = $num->bids - 1; //Update the database SupplyChainContract::where([