© 2026 Hedgehog Software, LLC
public function taskStatuses() : BelongsTo { return $this->belongsTo(Status::class, 'status_id')->where('model','Task'); }
Forms\Components\Select::make('status_id') ->relationship('taskStatuses', 'name') ->required(),