To start, make sure the package is installed - @livewire('notifications') should be in your Blade layout somewhere.
Before we start, make sure that the Laravel notifications table is added to your database:
If you’re using PostgreSQL, make sure that thedatacolumn in the migration is usingjson():$table->json('data').
If you’re using UUIDs for yourFirst, you must publish the configuration file for the package. Inside the configuration file, there is aUsermodel, make sure that yournotifiablecolumn is usinguuidMorphs():$table->uuidMorphs('notifiable').
database key. To enable database notifications:
/resources/views/notifications/database-notifications-trigger.blade.php:
$unreadNotificationsCount is a variable automatically passed to this view, which provides it with a real-time count of the number of unread notifications the user has.
In the configuration file, point to this new trigger view:
@livewire('notifications') component to the position in your HTML that you wish to render the database notifications trigger button. It should appear, and open the database notifications modal when clicked!
Sending notifications
There are several ways to send database notifications, depending on which one suits you best. You may use our fluent API:notify() method:
toDatabase() method:
Receiving notifications
Without any configuration, new database notifications will only be received when the page is first loaded.Polling
Polling is the practice of periodically making a request to the server to check for new notifications. This is a good approach as the setup is simple, but some may say that it is not a scalable solution as it increases server load. By default, the configuration file polls for new notifications every 30 seconds:Echo
Alternatively, the package has a native integration with Laravel Echo. Make sure Echo is installed, as well as a server-side websockets integration like Pusher. Once websockets are set up, after sending a database notification you may emit aDatabaseNotificationsSent event, which will immediately fetch new notifications for that user:
Opening the notifications modal
Instead of rendering the trigger button as described above, you can always open the database notifications modal from anywhere by dispatching anopen-modal browser event: