Unable To Connect Laravel to MailChimp (laravel 5.4)
问题 I have to define List ID and MailChimp API Key in my .env file. I'm sure both are fine even I am not getting any error but email in not inserting in my List I installed https://github.com/spatie/laravel-newsletter ( spatie/laravel-newsletter ) Package. Here is my method public function subscribe(Request $request) { $email = request('email'); Newsletter::subscribe($email); Session::flash('subscribed', 'Successfully subscribed.'); return redirect()->back(); } Then I check subscribe Method in