bozboz/enquire

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v3.3.6) of this package.

v3.3.6 2021-09-14 12:56 UTC

README

Installation

  • Install package composer require bozboz/enquire <version>
  • Add service provider to provider array
     Bozboz\Enquire\EnquireServiceProvider',
    
  • Include form partial in any view you want to be able to display forms
     @include('enquire::partials.form')
    

Usage

The default front end route doesn't support newsletter signup functionality due to not being able to anticipate implementation. There is a MailChimpFormController which contains a basic MailChimp signup implementation.

To use this just override the package's frontend route with:

Route::post('process-enquiry', [
	'as' => 'process-enquiry',
	'uses' => 'MailChimpFormController@processSubmission'
]);