About form

Installs: 17

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/egorryaroslavl/about

1.0.0 2017-06-19 07:48 UTC

This package is auto-updated.

Last update: 2025-10-07 06:27:03 UTC


README

Installation

composer require egorryaroslavl/about 

Then add ServiceProviders

  'providers' => [
    // ...
    Egorryaroslavl\About\AboutServiceProvider::class,
    Collective\Html\HtmlServiceProvider::class,
    Barryvdh\Elfinder\ElfinderServiceProvider::class,
    // ...
  ],

and aliases

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

and run

php artisan vendor:publish 

And after all, run this...

php artisan migrate