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
Requires
- php: >=7.0
- bozboz/admin: 2.*
- illuminate/support: 5.2.*
- msurguy/honeypot: 1.0.*
This package is auto-updated.
Last update: 2021-09-14 12:56:59 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' ]);