Installation

Support

Composer

You can install the package using the command line

$ composer require laravelrus/sleepingowl

//or branch
$ composer require laravelrus/sleepingowl:dev-development

or manually adding a package to composer.json

{
  ...
  "require": {
    ...
    "laravelrus/sleepingowl": "dev-development",
  }
}

and execute the command

$ composer update

Service Provider

!> In Laravel 5.5+ the package will register automatically or you can specify it manually:

config/app.php

'providers' => [
    ...
    /**
     * SleepingOwl Service Provider
     */
    SleepingOwl\Admin\Providers\SleepingOwlServiceProvider::class,

    /**
     * Application Service Providers...
     */
    App\Providers\AppServiceProvider::class,
    ...
]

Artisan

Run artisan command to install SleepingOwl Admin

$ php artisan sleepingowl:install

What does this command

Next step