FilamentF
Filament15mo ago
Asmit

Filament notification delete issue.

I add these code on admin panel provider
public function panel(Panel $panel): Panel
    {
        return $panel
            ->databaseNotifications()
            ->databaseNotificationsPolling('60');
    }

And My Notification is like
Tables\Actions\Action::make('product_updated')
    ->icon('heroicon-m-arrow-path')
    ->requiresConfirmation()
    ->action(function () use ($job) {
        Notification::make('product_rate_update_with_locale')
            ->title('Success')
            ->success()
            ->send();
    }),
php

After Notification toast is hide then it throw the error like

Is there any thing that is missed ?
Screenshot_2024-10-02_at_12.12.53.png
Was this page helpful?