netgescon-day0/app/Models/SubscriptionPlan.php

25 lines
467 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class SubscriptionPlan extends Model
{
use HasFactory;
protected $fillable = [
'name',
'slug',
'price_monthly',
'is_active',
'features',
];
protected $casts = [
'price_monthly' => 'decimal:2',
'is_active' => 'boolean',
'features' => 'array',
];
}