perochak/yii2-gii-gentelella

A Gentelella based CRUD for Yii2

1.0.0 2017-03-04 05:28 UTC

This package is not auto-updated.

Last update: 2024-05-01 18:29:52 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',
                ],
            ],
        ],