FilamentF
Filament14mo ago
aldec

Combine Relationship Manager tabs and form tabs

Is it possible to combine the tab created from hasCombinedRelationManagerTabsWithContent() with the tabs from a form?
Solution
much better:

Livewire::make(YourRelationManager::class, fn (Page $livewire, YourModel $record) => [
    'ownerRecord' => $record,
    'pageClass' => $livewire::class,
]),


and remove the mount method
Was this page helpful?