This commit is contained in:
dimon8
2026-01-07 06:44:07 +00:00
parent 368ad0a220
commit 31b79d70c5
6 changed files with 144 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ComponentType extends Model
{
protected $fillable = ['name', 'code'];
protected $casts = [
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
}