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