egorryaroslavl / contacts
联系表单
1.0.2
2017-06-01 17:04 UTC
Requires
- egorryaroslavl/admin: ^1.0.5
- intervention/image: ^2.3
- laravelcollective/html: ^5.3.0
This package is auto-updated.
Last update: 2024-09-07 02:38:19 UTC
README
安装
composer require "egorryaroslavl/contacts":"1.0.2"
然后添加 ServiceProviders
'providers' => [
// ...
Egorryaroslavl\Contacts\ContactsServiceProvider::class,
Collective\Html\HtmlServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
// ...
],
和别名
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'Image' => Intervention\Image\Facades\Image::class,
// ...
],
并运行以下命令
php artisan vendor:publish
最后,运行以下...
php artisan migrate