tecnodesignc/form-module
最新稳定版本:3.0.0
Composer 安装命令:
composer require tecnodesignc/form-module
包简介
Form module for EncoreCMS 3
关键字:
README 文档
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] |
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-08-16