© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•17mo ago•
2 replies
Asmit

Filament notification delete issue.

I add these code on admin panel provider
public function panel(Panel $panel): Panel
    {
        return $panel
            ->databaseNotifications()
            ->databaseNotificationsPolling('60');
    }
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();
    }),
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
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Filament notification 500 error
FilamentFFilament / ❓┊help
7mo ago
Database Notification Issue
FilamentFFilament / ❓┊help
3y ago
Show Filament notification when database notification is received
FilamentFFilament / ❓┊help
2y ago