Files
jabali-panel/resources/views/filament/partials/notifications-refresh.blade.php

18 lines
500 B
PHP

<script data-navigate-once>
document.addEventListener('livewire:init', () => {
if (!window.Livewire || !window.Livewire.hook || !window.Livewire.dispatch) {
return;
}
window.Livewire.hook('commit', ({ component, succeed }) => {
if (component?.name === 'notifications') {
return;
}
succeed(() => {
window.Livewire.dispatch('notificationsSent');
});
});
});
</script>