Open henryavila opened 6 months ago
HI, would be great if it can display custom events, the this in spatie/laravel-activitylog doc
spatie/laravel-activitylog
activity() ->performedOn($anEloquentModel) ->causedBy($user) ->withProperties(['customProperty' => 'customValue']) ->log('Look mum, I logged something');
You can just publish filament-activity-log-views, and make some changes in the view. $activityItem->getExtraProperty('customProperty') will fetch your custom value
filament-activity-log-views
$activityItem->getExtraProperty('customProperty')
HI, would be great if it can display custom events, the this in
spatie/laravel-activitylog
doc