egorryaroslavl / about
About form
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/egorryaroslavl/about
Requires
- barryvdh/laravel-elfinder: ^0.3.8
- egorryaroslavl/admin: 1.*
- laravelcollective/html: ^5.3.0
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