perochak/yii2-gii-gentelella

A Gentelella based CRUD for Yii2

Maintainers

Package info

github.com/perochak/yii2-gii-gentelella

Type:yii2-extension

pkg:composer/perochak/yii2-gii-gentelella

Statistics

Installs: 39

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2017-03-04 05:28 UTC

This package is not auto-updated.

Last update: 2026-03-05 03:24:36 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',
                ],
            ],
        ],