paladindigital / blog
Laravel Blogging Package
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/paladindigital/blog
Requires
- laravel/framework: 5.5.*
- spatie/laravel-medialibrary: ^6.0.0
- taskforcedev/laravel-support: 1.1.*
This package is auto-updated.
Last update: 2025-10-08 02:46:48 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',
],