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