midnite81/report-emailer

A package make report emailing easier in laravel

v0.0.3 2018-05-18 13:03 UTC

This package is auto-updated.

Last update: 2024-04-20 21:31:15 UTC


README

This allows for easy report emailing in Laravel 5

Work in progress - proper documentation to follow.

Installation

This package requires PHP 5.6+, and includes a Laravel 5 Service Provider.

To install through composer include the package in your composer.json.

"midnite81/report-emailer": "0.0.*"

Run composer install or composer update to download the dependencies or you can run composer require midnite81/report-emailer.

Register the service provider

To use the package with Laravel 5 firstly add the Report Emailer service provider to the list of service providers in app/config/app.php.

'providers' => [

  Midnite81\ReportEmailer\ReportEmailerServiceProvider::class
          
];

Further information

This readme will be updated in due course as this package is under current pre-release development.