noxoua/filament-activity-log
{: .note }
Keep in mind RelationManager has nothing to do with regular relations in your resource. Learn more about Filament Relation Managers{:target="_blank"}.
Imagine you have a resource with a relation called accessories. Here's a straightforward example of defining such a relation manager:
$logger->relationManagers([
RelationManager::make('accessories')
->label('Accessory')
->fields([
Field::make('name'),
Field::make('price'),
]),
]);
How can I help you explore Laravel packages today?