droitformation/databaselog

A simple database logger for all outgoing emails sent by Laravel website.

This package's canonical repository appears to be gone and the package has been frozen as a result.

2.3 2023-06-07 12:41 UTC

This package is auto-updated.

Last update: 2023-07-07 12:51:42 UTC


README

Database logger for all outgoing emails

Installation

Step 1: Composer

Database Log can be installed via composer by running this line in terminal:

composer require droitformation/databaselog

Step 2: Configuration

Add the following to your config/app.php in the providers array:

'providers' => [
    // ...
    Droitformation\DatabaseLog\DatabaseLogServiceProvider::class,
],

Step 3: Migration

Now, run this in terminal:

php artisan migrate

Usage

After installation, any email sent by your website will be logged to email_log table in the site's database.