Files
FilamentLaravel/app/Models/FilamentType.php
2025-03-10 19:38:23 +01:00

23 lines
390 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class FilamentType extends Model
{
protected $table = 'filament_types';
protected $primaryKey = 'id';
protected $fillable = [
'name',
'description',
];
// FilamentType has many filaments
public function filaments()
{
return $this->hasMany(Filament::class);
}
}