| 1 | <?php |
||
| 10 | class PlanFeature extends Model implements PlanFeatureContract |
||
| 11 | { |
||
| 12 | protected $table = 'plan_features'; |
||
| 13 | |||
| 14 | protected $fillable = [ |
||
| 15 | 'code', 'value', 'sort_order', 'is_consumable' |
||
| 16 | ]; |
||
| 17 | |||
| 18 | public function plan() |
||
| 22 | |||
| 23 | public function isConsumable(): bool |
||
| 27 | |||
| 28 | public function getValue(): int |
||
| 32 | |||
| 33 | public static function make(string $code, int $value, int $sortOrder, bool $isConsumable = false): Model |
||
| 44 | } |
||
| 45 |