F
Filament2mo ago
RawaN

How to use filament notification outside the panel

I wanna use filament notification on my website outside the panel how to do this ?
2 Replies
Nikos Koukos
Nikos Koukos2mo ago
in your layout file you can use
@livewire('notifications')
@livewire('notifications')
and then inside a livewire component
use Filament\Notifications\Notification;
use Filament\Notifications\Notification;
and then you can use the Notification as you want, probably you will also need to
php artisan filament:install --notifications
php artisan filament:install --notifications

Did you find this page helpful?