midnite81 / report-emailer
A package make report emailing easier in laravel
Installs: 71
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- maatwebsite/excel: ^2.0
- midnite81/laravel-base: ^2.0.10
This package is auto-updated.
Last update: 2024-10-20 22:30:42 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.