Merge pull request #4889 from devansh-webkul/shipping-issue
Length Added #4885
This commit is contained in:
commit
85e5dcf03c
|
|
@ -42,7 +42,7 @@ class Bundle extends AbstractType
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $skipAttributes = ['price', 'cost', 'special_price', 'special_price_from', 'special_price_to', 'width', 'height', 'depth', 'weight'];
|
||||
protected $skipAttributes = ['price', 'cost', 'special_price', 'special_price_from', 'special_price_to', 'length', 'width', 'height', 'weight'];
|
||||
|
||||
/**
|
||||
* These blade files will be included in product edit page
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ class Configurable extends AbstractType
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $skipAttributes = ['price', 'cost', 'special_price', 'special_price_from', 'special_price_to', 'width', 'height', 'depth', 'weight'];
|
||||
protected $skipAttributes = ['price', 'cost', 'special_price', 'special_price_from', 'special_price_to', 'length', 'width', 'height', 'weight'];
|
||||
|
||||
/**
|
||||
* These blade files will be included in product edit page
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class Downloadable extends AbstractType
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $skipAttributes = ['width', 'height', 'depth', 'weight', 'guest_checkout'];
|
||||
protected $skipAttributes = ['length', 'width', 'height', 'weight', 'guest_checkout'];
|
||||
|
||||
/**
|
||||
* These blade files will be included in product edit page
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class Grouped extends AbstractType
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $skipAttributes = ['price', 'cost', 'special_price', 'special_price_from', 'special_price_to', 'width', 'height', 'depth', 'weight'];
|
||||
protected $skipAttributes = ['price', 'cost', 'special_price', 'special_price_from', 'special_price_to', 'length', 'width', 'height', 'weight'];
|
||||
|
||||
/**
|
||||
* These blade files will be included in product edit page
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ class Virtual extends AbstractType
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $skipAttributes = ['width', 'height', 'depth', 'weight'];
|
||||
protected $skipAttributes = ['length', 'width', 'height', 'weight'];
|
||||
|
||||
/**
|
||||
* These blade files will be included in product edit page
|
||||
|
|
|
|||
Loading…
Reference in New Issue