djokicpn / 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: 50 570
Dependents: 0
Suggesters: 0
Security: 0
Stars: 27
Watchers: 1
Forks: 5
Open Issues: 2
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 djokicpn/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 Djokicpn\LaravelEmailAuditLog\Models\EmailAudit; EmailAudit::all(); //Will return collection of models