Hi.
First, congrats! This seems to be an awesome extension, much like GiiX for Yii1.
I have a problem though. I have an existing database in MySQL.
I've created all models and now I am trying to create the CRUDS.
No matter what options I select I always get this code in the CONTROLLER:
public function actionView($)
{
$model = $this->findModel($);
return $this->render('view', [
'model' => $this->findModel($),
]);
}
I am using MariaDB 10.1.21 and PHP 5.6.30, with Yii 2.0.12
Hi. First, congrats! This seems to be an awesome extension, much like GiiX for Yii1.
I have a problem though. I have an existing database in MySQL. I've created all models and now I am trying to create the CRUDS.
No matter what options I select I always get this code in the CONTROLLER: public function actionView($) { $model = $this->findModel($); return $this->render('view', [ 'model' => $this->findModel($), ]); }
I am using MariaDB 10.1.21 and PHP 5.6.30, with Yii 2.0.12
Can anyone help?