Hi there,
First, thanks for this package 馃檹.
I'm displaying comments and commenting form form on a custom Filament resource page using
<livewire:commentions.comments :record="$this->record" :paginate="true" per-page="5" pollingInterval="60s" />
In my associated Commentable Model, I implemented getComments() method to meld associated spatie/laravel-activitylog entries, so status updates are listed within comments. This works fine.
But I'd like to trigger the refresh of the commentions.comments view to reflect the status changes as soon as the record is saved, rather than waiting for the polling to be triggered. Is there a way to achieve this?
Thanks
Hi there,
First, thanks for this package 馃檹.
I'm displaying comments and commenting form form on a custom Filament resource page using
In my associated
CommentableModel, I implementedgetComments()method to meld associatedspatie/laravel-activitylogentries, so status updates are listed within comments. This works fine.But I'd like to trigger the refresh of the
commentions.commentsview to reflect the status changes as soon as the record is saved, rather than waiting for the polling to be triggered. Is there a way to achieve this?Thanks