Blog Package
Status: Pre-release (Code may be subject to breaking changes)., (*1)
This package provides the resources necessary to create a blog., (*2)
Requirements
- Laravel 5 (Tested from 5.5+).
Installation
Add the package:, (*3)
composer require "paladindigital/blog"
Run the migrations:, (*4)
php artisan migrate
Add the filesystem to store blog images (the root can be adjusted as needed):, (*5)
config/filesystems.php, (*6)
'blog' => [
'driver' => 'local',
'root' => public_path('images/blog'),
'visibility' => 'public',
],