bmsrox / yii-adminlte-crud-template
CRUD template to adminLTE integrated with yii2
Installs: 3 972
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 2
Open Issues: 0
Type:yii2-extension
Requires
This package is auto-updated.
Last update: 2025-03-09 02:36:20 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
]
]
],
];