Files
nnterp-react-admin/app/Models/AddOn.php
2026-03-13 20:49:46 +08:00

28 lines
500 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class AddOn extends Model
{
protected $fillable = [
'module',
'name',
'monthly_price',
'yearly_price',
'image',
'is_enable',
'for_admin',
'package_name',
'priority'
];
protected $casts = [
'is_enable' => 'boolean',
'for_admin' => 'boolean',
'monthly_price' => 'decimal:2',
'yearly_price' => 'decimal:2'
];
}