jhoyax / laravel-contact-form
Laravel 联系表单
v1.0.1
2019-12-13 01:32 UTC
Requires
- php: ^7.2
- laravel/framework: ^6.2
This package is auto-updated.
Last update: 2024-09-13 12:38:07 UTC
README
此包允许您在视图中任何地方包含联系表单。您还可以通过覆盖迁移文件来添加/编辑表格中的字段,并在配置文件中更新验证规则。
安装
composer require jhoyax/laravel-contact-form
可选:覆盖配置、迁移、语言或视图
php artisan vendor:publish --tag=contact_form_config
php artisan vendor:publish --tag=contact_form_migrations
php artisan vendor:publish --tag=contact_form_lang
php artisan vendor:publish --tag=contact_form_views
配置
在您的 .env 文件中更新联系表单消息接收者。
CONTACT_FORM_SEND_TO=hello@world.com
用法
包含表单。
@include('contact_form::default')