dev-master
9999999-devSimple mailchimp newsletter subscription box for Laravel 5.* with Bootstrap 3
MIT
The Requires
0.1.0
0.1.0.0Simple mailchimp newsletter subscription box for Laravel 5.* with Bootstrap 3
MIT
The Requires
Wallogit.com
2017 © Pedro Peláez
Simple mailchimp newsletter subscription box for Laravel 5.* with Bootstrap 3
Simple laravel 5.* mailchimp newsletter subscription box., (*1)
This package is based in the "https://github.com/skovmand/mailchimp-laravel#mand/mailchimp-laravel" package., (*2)
"require": {
"tropicalapps/laravel-mailchimp-newsletter": "0.1.*",
}
Go to config/app.php and edit the providers array, (*3)
'providers' => [
TropicalApps\Mailchimp\MailchimpServiceProvider::class,
]
php artisan vendor:publish --provider="TropicalApps\Mailchimp\MailchimpServiceProvider" --tag=all
config config/mailchimp.php
views resources/views/newsletter
request Http/Requests/NewsletterRequest.php
controller Http/Controllers/NewsletterController.php, (*4)
MAILCHIMP_API_KEY= MAILCHIMP_LIST_ID=
Add the follow to your routes file, (*5)
Route::post('subscribe', [
'as' => 'subscribe',
'uses' => 'NewsletterController@subscribe'
]);
Simple mailchimp newsletter subscription box for Laravel 5.* with Bootstrap 3
MIT
Simple mailchimp newsletter subscription box for Laravel 5.* with Bootstrap 3
MIT