1 | <?php |
||
8 | class PlanFeature extends Model implements PlanFeatureContract |
||
9 | { |
||
10 | protected $table = 'plan_features'; |
||
11 | |||
12 | protected $fillable = [ |
||
13 | 'code', 'value', 'sort_order', 'is_consumable', |
||
14 | ]; |
||
15 | |||
16 | public function plan() |
||
20 | |||
21 | public function isConsumable(): bool |
||
25 | |||
26 | public function getValue(): int |
||
30 | |||
31 | public static function make(string $code, int $value, int $sortOrder, bool $isConsumable = false): Model |
||
42 | } |
||
43 |