mr4-lc / laravel-email-audit-log
This Service provider will monitor all emails that has been sent out of your system. Sent emails will be stored in email_audit_log table
Fund package maintenance!
Patreon
Installs: 69
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 5
pkg:composer/mr4-lc/laravel-email-audit-log
README
Laravel Email Audit Log
This service provider will monitor all emails that has been sent out of your system. Sent emails will be stored in email_audit_log table.
Any feedback / enhancement request is more than welcome!
Help and docs
We use GitHub issues only to discuss bugs and new features. For support please refer to:
Installing Laravel Audit Log
The recommended way to install Laravel Audit Log is through Composer.
composer require mr4-lc/laravel-email-audit-log
Publishing migrations
Lets publish package migrations
php artisan vendor:publish --tag=email-audit-log-migrations
Migrating database
php artisan migrate
Usage and reports
There is already aliased eloquent model
use mr4-lc\LaravelEmailAuditLog\Models\EmailAudit; EmailAudit::all(); //Will return collection of models