We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b786bbb commit 298b8b4Copy full SHA for 298b8b4
CHANGELOG.md
@@ -4,6 +4,7 @@ Yii Framework 2 gii extension Change Log
4
2.2.5 under development
5
-----------------------
6
7
+- Bug #500: Fix missing namespace in CRUD index template (mohamed-nazim)
8
- Ehn #489: Added support for the `::class` constant in model generator via the `useClassConstant` setting (rhertogh)
9
- Bug #502: Setting `skipOnEmpty` to fix "trim(): Passing null to parameter" in `generators/model/Generator.php` (rhertogh)
10
src/generators/crud/default/views/index.php
@@ -11,6 +11,7 @@
11
echo "<?php\n";
12
?>
13
14
+use <?= $generator->modelClass ?>;
15
use yii\helpers\Html;
16
use yii\helpers\Url;
17
use yii\grid\ActionColumn;
0 commit comments