PHPackages                             romalytvynenko/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. romalytvynenko/blog

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

romalytvynenko/blog
===================

129PHP

Since Mar 24Pushed 10y agoCompare

[ Source](https://github.com/romalytvynenko/blog)[ Packagist](https://packagist.org/packages/romalytvynenko/blog)[ RSS](/packages/romalytvynenko-blog/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Blog
====

[](#blog)

This is basic blog package. It provides low-end features (DB architecture, editor, basic models) and not high-end logic(!).

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

[](#installation)

First of all, run migrations `php artisan migrate --path=vendor/romalytvynenko/blog/database/migrations`

Or, if you want to add special columns create migration and extend it from `Romalytvynenko\Blog\database\migrations\CreatePostsTable`, then implement `up()` method, and add columns via `Schema::table` method. For, example we need add `conference_id` columns to post's table.

```
