A Laravel 5+ wrapper package for MailerLite API
composer require "hocza/laravel-mailerlite:2.*"Add the following settings to the config/app.php
Service provider:
'providers' => [
...
'Hocza\MailerLite\PackageServiceProvider',
]For the MailerLite:: facade
'aliases' => [
...
'MailerLite' => 'Hocza\MailerLite\Facades\MailerLite',
]Just put MAILERLITE_API_KEY= into your .env file
On the other hand you can always publish that really small config with
php artisan vendor:publish --provider="Hocza\MailerLite\PackageServiceProvider"
Register with this link if you do not already have an account with MailerLite:
paypal at hocza.com

