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

This package is auto-updated.

Last update: 2024-04-07 23:42:34 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',
],