Lavalite package that provides supervisor management facility for the cms. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `focus/supervisor`. "focus/supervisor": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. Focus\Supervisor\Providers\SupervisorServiceProvider::class, And also add it to alias 'Supervisor' => Focus\Supervisor\Facades\Supervisor::class, ## Publishing files and migraiting database. **Migration and seeds** php artisan migrate php artisan db:seed --class=Focus\\SupervisorTableSeeder **Publishing configuration** php artisan vendor:publish --provider="Focus\Supervisor\Providers\SupervisorServiceProvider" --tag="config" **Publishing language** php artisan vendor:publish --provider="Focus\Supervisor\Providers\SupervisorServiceProvider" --tag="lang" **Publishing views** php artisan vendor:publish --provider="Focus\Supervisor\Providers\SupervisorServiceProvider" --tag="view" ## Usage