Hi I create really simple test because my notification inside action not being sent by vilament
protected function getHeaderActions(): array
{
return [
Action::make('test notif')
->label('Test Notification')
->action(function () {
Notification::make()
->title('This is a test notification')
->body('Notifications are working correctly!')
->success()
->send();
}),
];
}
this is works on my fresh install filament v4, but not work on my another project that also use fresh install
"require": {
"php": "^8.2",
"filament/filament": "^4.0",
"laravel/framework": "^12.0",
},
but previously I install custom theme because I want to install filament tree view, but another bult-in action such as edit/create still send notification, just custom notification
any help will be appreciated