Skip to content

Commit

Permalink
sa
Browse files Browse the repository at this point in the history
  • Loading branch information
nanthakumar5 committed Dec 28, 2022
1 parent 56a3be2 commit 7ff9c22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Models/Event.php
Expand Up @@ -455,7 +455,7 @@ public function productsaction($data, $extras)
$products['name'] = $productsdata['name'];
$products['quantity'] = $productsdata['quantity'];
$products['price'] = $productsdata['price'];
$products['status'] = $productsdata['status'];
$products['status'] = '1';
$products['type'] = $extras[1];


Expand Down Expand Up @@ -500,7 +500,7 @@ public function facilitybarnstallaction($data, $extras)
$stall['week_price'] = isset($stalldata['week_price']) ? $stalldata['week_price'] : 0;
$stall['month_price'] = isset($stalldata['month_price']) ? $stalldata['month_price'] : 0;
$stall['flat_price'] = isset($stalldata['flat_price']) ? $stalldata['flat_price'] : 0;
$stall['status'] = $stalldata['status'];
$stall['status'] = '1';
$stall['type'] = $extras[2];

if(isset($stalldata['image']) && $stalldata['image']!=''){
Expand Down Expand Up @@ -535,7 +535,7 @@ public function facilityproductsaction($data, $extras)
$products['name'] = $productsdata['name'];
$products['quantity'] = $productsdata['quantity'];
$products['price'] = $productsdata['price'];
$products['status'] = $productsdata['status'];
$products['status'] = '1';
$products['type'] = $extras[1];

if($productsid==''){
Expand Down

0 comments on commit 7ff9c22

Please sign in to comment.