25 lines
467 B
PHP
25 lines
467 B
PHP
<?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',
|
|
];
|
|
}
|