update marketing
All checks were successful
All checks were successful
This commit is contained in:
@@ -27,16 +27,6 @@
|
||||
</svg>
|
||||
</h3>
|
||||
|
||||
<div class="d-flex align-items-center mb-3">
|
||||
<input type="hidden" name="show_product_price" value="0">
|
||||
<input id="product_price" class="delete-checkbox-item multi-delete" type="checkbox"
|
||||
name="show_product_price" value="1"
|
||||
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_product_price'] ?? false) ? 'checked' : '' }}>
|
||||
<label for="product_price">
|
||||
{{__('Product Price')}}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-center mb-3">
|
||||
<input type="hidden" name="show_product_code" value="0">
|
||||
<input id="product_code" class="delete-checkbox-item multi-delete" type="checkbox"
|
||||
@@ -45,6 +35,13 @@
|
||||
<label for="product_code">{{__('Product Code')}}</label>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-center mb-3">
|
||||
<input type="hidden" name="show_hsn_code" value="0">
|
||||
<input id="hsn_code" class="delete-checkbox-item multi-delete" type="checkbox" name="show_hsn_code" value="1"
|
||||
{{ optional($product_setting?->modules)['show_hsn_code'] === '1' ? 'checked' : '' }}>
|
||||
<label for="hsn_code">{{__('HSN Code')}}</label>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-center mb-3">
|
||||
<input type="hidden" name="show_product_stock" value="0">
|
||||
<input id="stock" class="delete-checkbox-item multi-delete" type="checkbox"
|
||||
@@ -57,7 +54,7 @@
|
||||
<input type="hidden" name="show_product_unit" value="0">
|
||||
<input id="unit" class="delete-checkbox-item multi-delete" type="checkbox"
|
||||
name="show_product_unit" value="1"
|
||||
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_product_unit'] ?? false) ? 'checked' : '' }}>
|
||||
{{ optional($product_setting?->modules)['show_product_unit'] === '1' ? 'checked' : '' }}>
|
||||
<label for="unit">{{__('Product Unit')}}</label>
|
||||
</div>
|
||||
|
||||
@@ -105,7 +102,7 @@
|
||||
<input type="hidden" name="show_alert_qty" value="0">
|
||||
<input id="quantity" class="delete-checkbox-item multi-delete" type="checkbox"
|
||||
name="show_alert_qty" value="1"
|
||||
{{ is_null($product_setting) || is_null($product_setting->modules) || (optional($product_setting->modules)['show_alert_qty'] ?? false) ? 'checked' : '' }}>
|
||||
{{ optional($product_setting?->modules)['show_alert_qty'] === '1' ? 'checked' : '' }}>
|
||||
<label for="quantity">{{__('Low Stock Alert')}}</label>
|
||||
</div>
|
||||
|
||||
@@ -457,6 +454,8 @@ class="form-control mfg-my"
|
||||
{{ optional($product_setting?->modules)['allow_product_discount'] === '1' ? 'checked' : '' }}>
|
||||
<label for="allow_product_discount">{{ __('Product Discount') }}</label>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12">
|
||||
|
||||
Reference in New Issue
Block a user