Lavalite package that provides

_hello management facility for the cms. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `asda/

_hello`. "asda/

_hello": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. Asda\

Hello\Providers\

HelloServiceProvider::class, And also add it to alias '

Hello' => Asda\

Hello\Facades\

Hello::class, ## Publishing files and migraiting database. **Migration and seeds** php artisan migrate php artisan db:seed --class=Asda\\

Hello\\Seeds\\

HelloTableSeeder **Publishing configuration** php artisan vendor:publish --provider="Asda\

Hello\Providers\

HelloServiceProvider" --tag="config" **Publishing language** php artisan vendor:publish --provider="Asda\

Hello\Providers\

HelloServiceProvider" --tag="lang" **Publishing views** php artisan vendor:publish --provider="Asda\

Hello\Providers\

HelloServiceProvider" --tag="view" ### Web Urls **Admin** http://path-to-route-folder/admin/

_hello/{modulename} **User** http://path-to-route-folder/user/

_hello/{modulename} **Public** http://path-to-route-folder/

_hellos ### API endpoints **List** http://path-to-route-folder/api/user/

_hello/{modulename} METHOD: GET **Create** http://path-to-route-folder/api/user/

_hello/{modulename} METHOD: POST **Edit** http://path-to-route-folder/api/user/

_hello/{modulename}/{id} METHOD: PUT **Delete** http://path-to-route-folder/api/user/

_hello/{modulename}/{id} METHOD: DELETE **Public List** http://path-to-route-folder/api/

_hello/{modulename} METHOD: GET **Public Single** http://path-to-route-folder/api/

_hello/{modulename}/{slug} METHOD: GET