perochak / yii2-gii-gentelella
A Gentelella based CRUD for Yii2
Installs: 39
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2025-04-02 23:08:04 UTC
README
This generator generates controller and views that implement CRUD (Create, Read, Update, Delete) operations for the specified data model.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist perochak/yii2-gii-gentelella "*"
or add
"perochak/yii2-gii-gentelella": "1.0.0"
to the require section of your composer.json.
To use this extension, add to main config in gii section following code:
'gii' => [ ... 'generators' => [ 'crud' => [ 'class' => 'perochak\gii\crud\Generator', ], ], ],