Your IP : 216.73.216.79


Current Path : /var/www/html/portalv2/console/config/
Upload File :
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'
                    ],
                ]
            ],
        ] 
    ],
];