PHP code example of jeremykenedy / laravel-email-database-log

1. Go to this page and download the library: Download jeremykenedy/laravel-email-database-log library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jeremykenedy / laravel-email-database-log example snippets


    'providers' => [
        // ...
        jeremykenedy\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider::class,
    ];
bash
php artisan vendor:publish --tag=laravel-email-database-log-migration
bash
php artisan migrate
bash
laravel-email-database-log
├── .all-contributorsrc
├── .github
│ └── workflows
│     └── master.yml
├── .gitignore
├── .styleci.yml
├── LICENSE.md
├── README.md
├── composer.json
├── composer.lock
├── phpunit.xml
└── src
    ├── Database
    │ └── Migrations
    │      └── 2023_02_26_001638_create_email_log.php
    ├── EmailLogger.php
    ├── LaravelEmailDatabaseLogEventServiceProvider.php
    └── LaravelEmailDatabaseLogServiceProvider.php