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