Email Template Management with Bootstrap & TinyMCE Editor
Can be used managing email templates from backend.
- Require this package with composer.
composer require proshore/email-templatesLaravel 5.5 uses Package Auto-Discovery, so you don't have to manually add the package to the ServiceProvider.
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Proshore\EmailTemplates\EmailTemplatesServiceProvider::class,- Publish file.
php artisan vendor:publish --tag=configphp artisan vendor:publish --tag=viewsphp artisan vendor:publish --tag=migrationsphp artisan vendor:publish --tag=publicTinyMCE script should be included in your appropriate layout. Multiple slugs can be added to config based on which the template identifiers are displayed in CRUD section, please change the config file located at 'config/proshore-email-templates.php'. Initially, there are some slugs to get you started with.
Sudhir Bastakoti