Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

anonymouse703's avatar

No data on Activity Timeline on UserResource

I add this on UserResource to track all user activities

ActivityLogTimelineTableAction::make('Activities')
                    ->timelineIcons([
                        'created' => 'heroicon-m-check-badge',
                        'updated' => 'heroicon-m-pencil-square',
                    ])
                    ->timelineIconColors([
                        'created' => 'info',
                        'updated' => 'warning',
                    ])
                    ->limit(10),

plugin : https://filamentphp.com/plugins/rmsramos-activitylog

but no data

0 likes
2 replies
Sinnbeck's avatar

Is it in the database? Did you configure the model as explained in the docs?

anonymouse703's avatar

@Sinnbeck my bad... what the functionality is if you edit that row (record that's the history) I thought it will records other modules users has updated or created

Please or to participate in this conversation.