PHPackages                             angel/blog - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. angel/blog

ActiveLibrary

angel/blog
==========

0.0.4(11y ago)049PHPPHP &gt;=5.3.0

Since Aug 5Pushed 11y ago4 watchersCompare

[ Source](https://github.com/CharlesAV/angel-blog)[ Packagist](https://packagist.org/packages/angel/blog)[ RSS](/packages/angel-blog/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (3)Dependencies (1)Versions (6)Used By (0)

Angel Blog
==========

[](#angel-blog)

This is a blog module for the [Angel CMS](https://github.com/CharlesAV/angel).

Installation
------------

[](#installation)

Add the following requirements to your `composer.json` file:

```
"require": {
  "angel/blog": "dev-master"
},
```

Issue a `composer update` to install the package.

Add the following service provider to your `providers` array in `app/config/app.php`:

```
'Angel\Blog\BlogServiceProvider'
```

Issue the following command:

```
php artisan migrate --package="angel/blog"  # Run the migrations
```

Open up your `app/config/packages/angel/core/config.php` and add the blog routes to the `menu` array:

```
'menu' => array(
	'Pages' => 'pages',
	'Menus' => 'menus',
	'Blog' => 'blog', //  'users',
	'Settings' => 'settings'
),
```

...and the menu-linkable models to the `linkable_models` array:

```
'linkable_models' => array(
	'Page' => 'pages',
	'Blog' => 'blog' //
