Created FilamentTypeController & FilamentType Model

This commit is contained in:
2025-03-10 19:28:46 +01:00
parent 9fd01ee43a
commit 21f33383ae
15 changed files with 404 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class FilamentType extends Model
{
protected $table = 'filament_types';
protected $fillable = [
'name',
'description',
];
}