CoreUI Templates
Steps to install how to use CoreUI templates with InfyOm Laravel Generator.
Complete Generator Installation Process
Make sure you have completed a full installation process which is described here
Remove Existing Templates
Remove any previous included templates stuff. like,
"infyomlabs/core-templates"
from your composer.json
\InfyOm\CoreTemplates\CoreTemplatesServiceProvider::class
, from your config/app.php
Add Package
To use CoreUI templates, add following to your composer.json
if you haven't.
"require": {
"infyomlabs/coreui-templates": "dev-develop"
}
Run Composer update
Run composer update
command.
Add Service Provider
Add following service providers into your providers array in config/app.php
InfyOm\CoreUITemplates\CoreUITemplatesServiceProvider::class,
Update Configuration
Update config/infyom/laravel_generator.php
to use CoreUI templates.
Update 'templates' => 'coreui-templates'
Publish Layout
If you are using published layout from generator then you need to publish layout files again by,
php artisan infyom.publish:layout
And overwrite each and every file.
Now you are all set to use CoreUI templates.