| Current Path : /var/www/html/portalv2/console/config/ |
| Current File : /var/www/html/portalv2/console/config/main-local.php |
<?php
return [
'bootstrap' => ['gii'],
'modules' => [
'gii' =>[
'class' => 'yii\gii\Module',
'generators' => [ //here
'crud' => [ // generator name
'class' => 'yii\gii\generators\crud\Generator', // generator class
'templates' => [ //setting for out templates
'dynaweb' => '@backend/template/crud/default'
],
]
],
]
],
];