where('type', $type); } function getAmountAttribute($value) { return $value / 100; } function setAmountAttribute($value) { $this->attributes['amount'] = $value * 100; } function getDiscountAttribute($value) { return $value * 10; } function setDiscountAttribute($value) { $this->attributes['discount'] = $value / 10; } }