Nightwatch captures notifications sent via Laravel’s notification system (email, SMS, Slack, etc.), including recipient details, channel used, and timestamp.Documentation Index
Fetch the complete documentation index at: https://nightwatch.laravel.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Notification List
The notification page lists the notification classes that have been observed in your application, with statistics for the total number of notifications sent and the average and p95 processing times.Notification Details
Click on a notification class to view all instances sent during the selected time period, including the channel, timestamp, and duration for each. You may select an instance to view the full trace for that notification within the context of its parent execution.Sampling
There are no direct sampling controls for notifications, they are automatically captured when their parent execution context is sampled.Filtering
There are a number of different methods to filter notification events.Filtering All Notification Events
To completely disable the collection of all notification events, set theNIGHTWATCH_IGNORE_NOTIFICATIONS environment variable to true:
Filtering Specific Notification Events
You can filter out specific notification events using theNightwatch::rejectNotifications() method: