Notifications Settings
Configure LaraDashboard daily error digest emails and understand the Notifications settings tab.
Notifications Settings
LaraDashboard can email administrators a daily error digest summarizing new errors found in storage/logs/laravel.log. Each unique error is reported once, so fixing an issue stops repeat notifications for that error.
Access
Open More → Settings (/admin/settings) and select the Notifications tab.
Settings
| Setting | Description | Default |
|---|---|---|
| Enable daily error notifications | Turn the digest on or off | Enabled |
| Recipient email | Who receives the digest | Blank = your account email, then site contact email, then first admin |
| Send time (server time) | When the digest runs | 09:00 (24-hour format) |
The scheduler command errors:notify-daily runs at the configured time.
What the digest includes
- New unique errors since the last digest
- Error message and location (file/line when available)
- Timestamp of first occurrence in the reporting window
The digest does not re-alert for errors you have already been notified about until they are cleared from the tracking state.
Requirements
- A working mail connection configured under More → Settings → Emails
- Scheduler cron running:
* * * * * php artisan schedule:run - Write access to
storage/logs/laravel.log
Troubleshooting
No digest received
- Confirm Enable daily error notifications is on
- Verify recipient email is correct
- Send a test email from Emails → Connections
- Check that
php artisan schedule:runexecutes on cron - Review
storage/logs/laravel.logfor mail errors
Too many emails
Disable the digest temporarily, fix recurring errors, then re-enable. Each unique error should only notify once per fix cycle.
Related
- Settings — all settings tabs
- Email Templates — transactional email design
- Deployment Guide — scheduler setup