carawebs/laravel-blog

19
Install
composer require carawebs/laravel-blog
Latest Version:1.0.0
Last Updated:Apr 23, 2017
Links: GitHub  ·  Packagist
Maintainer: DavidEgan

Basic Blog Package

This package is under development.

Add the package service provider to the providers array on /config/app.php:

// /config/app.php
'providers' => [
    // Blog Package
    Carawebs\Blog\BlogProvider::class
];

Add the BlogUserTrait to your User model. This sets up Eloquent relationships:

<?php

namespace App;

use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Carawebs\Blog\Traits\BlogUserTrait;

class User extends Authenticatable
{
    use Notifiable;
    use BlogUserTrait;

}

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444