egorryaroslavl / articles
Articles form
1.0.2
2017-06-24 12:59 UTC
Requires
- arrilot/laravel-widgets: ^3.6
- barryvdh/laravel-elfinder: ^0.3.8
- egorryaroslavl/admin: 1.*
- intervention/image: ^2.3
- laravelcollective/html: ^5.3.0
This package is auto-updated.
Last update: 2025-03-07 02:47:13 UTC
README
Installation
composer require "egorryaroslavl/articles":"1.*"
Then add ServiceProviders
'providers' => [
// ...
Egorryaroslavl\Articles\ArticlesServiceProvider::class,
Collective\Html\HtmlServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
Barryvdh\Elfinder\ElfinderServiceProvider::class,
Arrilot\Widgets\ServiceProvider::class,
// ...
],
and aliases
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'Image' => Intervention\Image\Facades\Image::class,
'Widget' => Arrilot\Widgets\Facade::class,
'AsyncWidget' => Arrilot\Widgets\AsyncFacade::class,
// ...
],
and run
php artisan vendor:publish
And after all, run this...
php artisan migrate