F
Filament15mo ago
Pasteko

How do you set the name of the relation table?

Filament
Relation managers - Resources - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans.
2 Replies
RichtheKid
RichtheKid15mo ago
You should be able to use
protected function getTableHeading
protected function getTableHeading
to set your heading with a string
Pasteko
Pasteko15mo ago
Thank you, it's working!
protected function getTableHeading(): ?string
{
return 'Adresses';
}
protected function getTableHeading(): ?string
{
return 'Adresses';
}