egorryaroslavl/contacts

联系表单

1.0.2 2017-06-01 17:04 UTC

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