1. Go to this page and download the library: Download neo/laravel-early-access library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace App\Services\SubscriptionServices;
use Neo\EarlyAccess\Contracts\Subscription\SubscriptionProvider;
class MailchimpService implements SubscriptionProvider
{
public function add(string $email, string $name = null): bool
{
// Implement adding a new subscriber...
}
public function remove(string $email): bool
{
// Implement removing a subscriber...
}
public function verify(string $email): bool
{
// Implement verifying a subscriber
}
/**
* @return \Neo\EarlyAccess\Subscriber|false
*/
public function findByEmail(string $email)
{
// Implement returning a subscriber from email
}
}
// [...]
$this->app->bind('early-access.mailchimp', function () {
return new \App\Services\SubscriptionServices\MailchimpService;
});
// [...]