Lavalite package that provides emails management facility for the cms. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `litecms/emails`. "litecms/emails": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. Litecms\Emails\Providers\EmailsServiceProvider::class, And also add it to alias 'Emails' => Litecms\Emails\Facades\Emails::class, ## Publishing files and migraiting database. **Migration and seeds** php artisan migrate php artisan db:seed --class=Litecms\\EmailsTableSeeder **Publishing configuration** php artisan vendor:publish --provider="Litecms\Emails\Providers\EmailsServiceProvider" --tag="config" **Publishing language** php artisan vendor:publish --provider="Litecms\Emails\Providers\EmailsServiceProvider" --tag="lang" **Publishing views** php artisan vendor:publish --provider="Litecms\Emails\Providers\EmailsServiceProvider" --tag="view" ### Web Urls **Admin** http://path-to-route-folder/admin/emails/{modulename} **User** http://path-to-route-folder/user/emails/{modulename} **Public** http://path-to-route-folder/emails ### API endpoints **List** http://path-to-route-folder/api/user/emails/{modulename} METHOD: GET **Create** http://path-to-route-folder/api/user/emails/{modulename} METHOD: POST **Edit** http://path-to-route-folder/api/user/emails/{modulename}/{id} METHOD: PUT **Delete** http://path-to-route-folder/api/user/emails/{modulename}/{id} METHOD: DELETE **Public List** http://path-to-route-folder/api/emails/{modulename} METHOD: GET **Public Single** http://path-to-route-folder/api/emails/{modulename}/{slug} METHOD: GET