Documentation Index
Fetch the complete documentation index at: https://filamentphp.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
You are currently viewing the documentation for Filament 4.x, which is a previous version of Filament.Looking for the current stable version? Visit the 5.x documentation.
Before proceeding, make sure filament/notifications is installed in your project. You can check by running:composer show filament/notifications
If itβs not installed, consult the installation guide and configure the individual components according to the instructions.
Introduction
To render notifications in your app, make sure the notifications Livewire component is rendered in your layout:
<div>
@livewire('notifications')
</div>
Now, when sending a notification from a Livewire request, it will appear for the user.