taggers / news
Taggers CMS news module
1.0
2017-01-20 09:57 UTC
Requires
- php: >=5.6.4
- cviebrock/eloquent-sluggable: ^4.1
- intervention/image: ^2.3
- laracasts/flash: ^2.0
- laravel/framework: 5.3.*
- laravelcollective/html: 5.3.*
This package is auto-updated.
Last update: 2025-04-26 03:41:58 UTC
README
Installation
First, you'll need to install the package via Composer:
composer require taggers/news
Then, update config/app.php
by adding an entry for the service provider.
'providers' => [ // ... Taggers\News\NewsServiceProvider::class, ];
Finally, from the command line again, publish the migrations:
php artisan vendor:publish php artisan migrate