https://github.com/imaxwen/yii2-adminlte-gii
yii2 code generator with adminlte theme
https://github.com/imaxwen/yii2-adminlte-gii
Last synced: 3 months ago
JSON representation
yii2 code generator with adminlte theme
- Host: GitHub
- URL: https://github.com/imaxwen/yii2-adminlte-gii
- Owner: imaxwen
- Created: 2016-10-10T06:24:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T19:55:51.000Z (about 7 years ago)
- Last Synced: 2025-04-05T12:24:19.491Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 9
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# yii2-adminlte-gii
yii2 code generator for [AdminLTE](https://github.com/almasaeed2010/AdminLTE) theme.## Installation
in your main-local.php, add options blow:
```php
$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',
]
]
];```