egorryaroslavl / about
About form
1.0.0
2017-06-19 07:48 UTC
Requires
- barryvdh/laravel-elfinder: ^0.3.8
- egorryaroslavl/admin: 1.*
- laravelcollective/html: ^5.3.0
This package is auto-updated.
Last update: 2025-03-07 05:02:57 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