*/ use HasFactory; protected $fillable = [ 'name', 'key', 'description', 'active', 'config', ]; protected function casts(): array { return [ 'active' => 'boolean', 'config' => 'array', ]; } public function decisions(): BelongsToMany { return $this->belongsToMany(\App\Models\Decision::class); } }