This is a Laravel 5 package that provides good management facility for lavalite framework.

## Installation

Begin by installing this package through Composer. Edit your project's `composer.json` file to require `good/good`.

    "good/good": "dev-master"

Next, update Composer from the Terminal:

    composer update

Once this operation completes execute below cammnds in command line to finalize installation.

```php
Good\Good\Providers\GoodServiceProvider::class,

```

And also add it to alias

```php
'Good'  => Good\Good\Facades\Good::class,
```

Use the below commands for publishing

Migration and seeds

    php artisan vendor:publish --provider="Good\Good\Providers\GoodServiceProvider" --tag="migrations"
    php artisan vendor:publish --provider="Good\Good\Providers\GoodServiceProvider" --tag="seeds"

Configuration

    php artisan vendor:publish --provider="Good\Good\Providers\GoodServiceProvider" --tag="config"

Language

    php artisan vendor:publish --provider="Good\Good\Providers\GoodServiceProvider" --tag="lang"

Views public and admin

    php artisan vendor:publish --provider="Good\Good\Providers\GoodServiceProvider" --tag="view-public"
    php artisan vendor:publish --provider="Good\Good\Providers\GoodServiceProvider" --tag="view-admin"

Publish admin views only if it is necessary.

## Usage