egorryaroslavl/contacts

Contact form

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:HTML

pkg:composer/egorryaroslavl/contacts

1.0.2 2017-06-01 17:04 UTC

This package is auto-updated.

Last update: 2025-09-07 05:04:16 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