egorryaroslavl/contacts

Contact form

1.0.2 2017-06-01 17:04 UTC

This package is auto-updated.

Last update: 2024-04-07 01:46:10 UTC


README

Installation

composer require "egorryaroslavl/contacts":"1.0.2"

Then add ServiceProviders

  'providers' => [
    // ...
    Egorryaroslavl\Contacts\ContactsServiceProvider::class,
    Collective\Html\HtmlServiceProvider::class,
    Intervention\Image\ImageServiceProvider::class,
    // ...
  ],

and aliases

  'aliases' => [
    // ...
      'Form' => Collective\Html\FormFacade::class,
      'Html' => Collective\Html\HtmlFacade::class,
      'Image' => Intervention\Image\Facades\Image::class,
    // ...
  ],

and run this

php artisan vendor:publish 

And after all, run this...

php artisan migrate