meenachinmay wrote a reply+100 XP
1mo ago
meenachinmay wrote a reply+100 XP
2mos ago
meenachinmay liked a comment+100 XP
5mos ago
I'm using owen-it / laravel-auditing along with TappNetwork / filament-auditing to show an audit trail on one or more resources in my Filament app. All is working well with basics of it, but I'd like to simply change the name of the tab from "audits" to "Audit Trail." It seems I should be able to simply add
protected function getTableHeading(): ?string
{
return 'Audit Trail';
}
to the relation manager. But the relation manager is only in the node_modules directory. Is it possible to publish this? I didn't see a command for this in the install instructions for the package.
Maybe there's another way to do it - perhaps in config/filament-auditing.php?