taskforcedev / blog
Laravel Blog module, provides controller, routes and publishable views.
Requires
- php: >=5.5.0
- laravel/framework: 5.*
- taskforcedev/laravel-support: 1.*
This package is not auto-updated.
Last update: 2024-11-09 19:55:58 UTC
README
Package Status: In development - Not currently usable.
A package for Laravel 5 which provides routes, views and controllers for a basic extendable blog.
Features
Provides out of the box blog post management and views, can be used in conjunction with bootstrap.
The package favours convention over configuration but does have configurable elements.
The package allows user the option of specifying whether the blog should be served from the home page, or from /blog.
Installation
To install the package add the following line to your composer.json
"require": {
"taskforcedev/blog": "5.*"
}
After doing this you should run composer update, then a dump autoload preferably using artisan
php artisan dump-autoload
Service Provider
After this you should add the following service provider to your config/app.php
Taskforcedev\Blog\ServiceProvider::class,
Overwriting Config
The package comes with default config however you will likely wish to publish this and overwrite with your own config settings.
php artisan vendor:publish --tag="taskforce-blog"