Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imaxwen/yii2-adminlte-gii
yii2 code generator with adminlte theme
https://github.com/imaxwen/yii2-adminlte-gii
Last synced: 2 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T19:55:51.000Z (over 6 years ago)
- Last Synced: 2024-04-04T20:02:21.207Z (10 months ago)
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 9
- Watchers: 4
- 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',
]
]
];```