FilamentF
Filament2y ago
xfly

Adding HasMany to Form Tabs or HasOne to the Top Tabs

Hi,

i want to add either the hasMany relations to the form tabs like the hasOne Relations:

Forms\Components\Tabs\Tab::make('Prozess')
->columns('2')
->schema([
Forms\Components\TextInput::make('name'),
Forms\Components\TextInput::make('email'),
]),

or the HasOne to the Tabs on the top when adding:

public function hasCombinedRelationManagerTabsWithContent(): bool
{
return true;
}

to the edit page.

it's just better ux for the user in my opinion. is this possible?

thank you in advance.
Was this page helpful?