bmsrox / yii-adminlte-crud-template
CRUD template to adminLTE integrated with yii2
Package info
github.com/bmsrox/yii-adminlte-crud-template
Type:yii2-extension
pkg:composer/bmsrox/yii-adminlte-crud-template
v1.0
2016-09-12 11:56 UTC
Requires
This package is auto-updated.
Last update: 2026-03-09 04:39:38 UTC
README
This is a code template to adminlte integrated with yii2
composer require bmsrox/yii-adminlte-crud-template
or add into composer.json
"bmsrox/yii-adminlte-crud-template": "dev-master"
CONFIG GII LAYOUT
Into your backend/config/main-local.php edit the follow instruction:
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'generators' => [ //here
'crud' => [ // generator name
'class' => 'yii\gii\generators\crud\Generator', // generator class
'templates' => [ //setting for out templates
'custom' => '@vendor/bmsrox/yii-adminlte-crud-template', // template name => path to template
]
]
],
];