*/ use HasFactory; use Searchable; protected $fillable = ['name', 'color_tag', 'segment_id']; public function decisions(): BelongsToMany { return $this->belongsToMany(\App\Models\Decision::class); } public function segment(): BelongsTo { return $this->belongsTo(\App\Models\Segment::class); } }