Getting started
Upgrade guide
The Filament Notifications Pro plugin has a V2 version that already has support for Filament V3.
If you want to upgrade to Notifications Pro V2, and therefore Filament V3 support, take the following steps:
- Require
ralphjsmit/laravel-filament-notifications'^2.0'instead of a 1.x version. - For each of the panels that you want to use the Notifications Pro plugin in, please register the plugin like follows:
app/Providers/Filament/YourPanelProvider.php
use RalphJSmit\Filament\Notifications\FilamentNotifications;
$panel
->plugin(FilamentNotifications::make())
- If you have extended pages like the
Notificationspage, please check your custom overrides with the new code. TheNotificationspage has dropped several methods likegetTableFilters(), which has been replaced by a static functiontable(Table $table): Tableand$table->filters(). - Re-compile your assets using
npm run buildornpm run prodif you are using a custom theme.