App\Models\Store\Product::getDescriptionAttribute PHP Method

getDescriptionAttribute() public method

public getDescriptionAttribute ( $value )
    public function getDescriptionAttribute($value)
    {
        if ($this->masterProduct) {
            return $this->masterProduct->description;
        } else {
            return $value;
        }
    }