tecnodesignc / form-module
Form module for EncoreCMS 3
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:Blade
Type:encore-module
Requires
- php: >=8.2
- composer/installers: ^2.1
- guzzlehttp/psr7: ^2.2
- josiasmontag/laravel-recaptchav3: ^1.0
- tecnodesignc/core-module: ^3.0
Requires (Dev)
- orchestra/testbench: 3.6.*
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-03-24 22:30:08 UTC
README
Installation
composer require tecnodesignc/form-module
Configuration
This module require maatwebsite/excel
The Maatwebsite\Excel\ExcelServiceProvider
is auto-discovered and registered by default.
If you want to register it yourself, add the ServiceProvider in config/app.php:
'providers' => [ /* * Package Service Providers... */ Maatwebsite\Excel\ExcelServiceProvider::class, ]
The Excel facade is also auto-discovered. If you want to add it manually, add the Facade in config/app.php:
'aliases' => [ ... 'Excel' => Maatwebsite\Excel\Facades\Excel::class, ]
To publish the config, run the vendor publish command:
php artisan vendor:publish --provider="Maatwebsite\Excel\ExcelServiceProvider"
This will create a new config file named config/excel.php.
data source maatwebsite/excel
Add NOCAPTCHA_SECRET
and NOCAPTCHA_SITEKEY
in .env file :
NOCAPTCHA_SECRET=secret-key
NOCAPTCHA_SITEKEY=site-key
(You can obtain them from here)
End Points
PATH | METHODS |
---|---|
/form/v1/forms | [GET, POST, PUT, DELETE] |
/form/v1/fields | [GET, POST, PUT, DELETE] |
/form/v1/types | [GET] |
/form/v1/leads | [GET, POST] |