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