maxwen / yii2-adminlte-gii
yii2 code generator with adminlte theme
Installs: 1 965
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 4
Forks: 4
Type:extension
Requires
- almasaeed2010/adminlte: ~2.0
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2024-11-09 20:07:04 UTC
README
yii2 code generator for AdminLTE theme.
Installation
in your main-local.php, add options blow:
$config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', 'allowedIPs' => ['127.0.0.1'], 'controllerNamespace' => 'maxwen\gii\controllers', 'generators' => [ 'AdminLte Crud' => [ 'class' => 'maxwen\gii\generators\crud\Generator', ] ] ];