© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
1 reply
dvarilek

Multiple relation managers on manage related records page

Hey,
I would like to know if it is possible to have two different relation managers on a Manage Related Records page. The user would be able to switch between these managers using tabs above the relation manager as it is done in normal view/edit pages that have multiple relation managers. I currently have just one relation manager above which I have managed to display the tabs used for switching by including the HasTabs trait. However, from my code diving into the trait, I'm not sure how can I switch between two tables - if it's even possible

use HasTabs;

    public function getTabs(): array
    {
        return [
            Tab::make('table1'),
            Tab::make('table2'),
        ];
    }
use HasTabs;

    public function getTabs(): array
    {
        return [
            Tab::make('table1'),
            Tab::make('table2'),
        ];
    }

I've attached an image
demonstration.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Relation managers (Hide on edit page)
FilamentFFilament / ❓┊help
3y ago
Relation Managers
FilamentFFilament / ❓┊help
15mo ago
Related records in list page
FilamentFFilament / ❓┊help
3mo ago
How to configure breadcrumbs url on manage related records
FilamentFFilament / ❓┊help
15mo ago