Skip to content

mmanos/laravel-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blog Package for Laravel 4

This package provides a simple blogging system for Laravel 4 applications. Some things it can do:

Installation via Composer

Add this to you composer.json file, in the require object:

"mmanos/laravel-blog": "dev-master"

After that, run composer install to install Casset.

Add the service provider to app/config/app.php, within the providers array.

'providers' => array(
	// ...
	'Mmanos\Blog\BlogServiceProvider',
)

Usage

In progress...