Install
You can install the package via composer:
composer require dcblogdev/laravel-sent-emails
Migration
You can publish the migration with:
php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="migrations"
After the migration has been published you can the tables by running the migration:
php artisan migrate
Config
You can publish the config with:
php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="config"
After the config has been published you can change the route path for sentemails from /sentemails to anything you like such as /admin/sentemails:
'routepath' => 'sentemails'
Views
You can publish the view with:
php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="views"
The views will be published to resources/views/vendor/sentemails
You can change the views to match your theme if desired.