paladindigital / blog
There is no license information available for the latest version (v0.2.1) of this package.
Laravel Blogging Package
v0.2.1
2018-02-09 14:22 UTC
Requires
- laravel/framework: 5.5.*
- spatie/laravel-medialibrary: ^6.0.0
- taskforcedev/laravel-support: 1.1.*
This package is auto-updated.
Last update: 2024-11-08 00:52:05 UTC
README
Status: Pre-release (Code may be subject to breaking changes).
This package provides the resources necessary to create a blog.
Requirements
- Laravel 5 (Tested from 5.5+).
Installation
Add the package:
composer require "paladindigital/blog"
Run the migrations:
php artisan migrate
Add the filesystem to store blog images (the root can be adjusted as needed):
config/filesystems.php
'blog' => [
'driver' => 'local',
'root' => public_path('images/blog'),
'visibility' => 'public',
],