Notficatin create

I see a similar issue with livewire and I want to see a notification after the data is created. How can I do?
No description
5 Replies
Lara Zeus
Lara Zeus7mo ago
add send
Notification::make()
->title('Saved successfully')
->success()
->send(); /// <<<<<<<
Notification::make()
->title('Saved successfully')
->success()
->send(); /// <<<<<<<
YusifHajiyev
YusifHajiyev7mo ago
doesn't work Class "App\Livewire\Notfication" not found I buy this error
Lara Zeus
Lara Zeus7mo ago
you forget to import the class use Filament\Notifications\Notification;
YusifHajiyev
YusifHajiyev7mo ago
composer update solved my problem thanks