31/01
2018
dev-master
9999999-devLaravel Blogging Package
The Requires
Wallogit.com
2017 © Pedro Peláez
Laravel Blogging Package
Status: Pre-release (Code may be subject to breaking changes)., (*1)
This package provides the resources necessary to create a blog., (*2)
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',
],
Laravel Blogging Package