docs/guide-ar/start-gii.md
$config = [ ... ];
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
];
}
defined('YII_ENV') or define('YII_ENV', 'dev');
https://hostname/index.php?r=gii
'gii' => [
'class' => 'yii\gii\Module',
'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.*', '192.168.178.20'] // عدل هذه حسب إحتياجاتك
],
app\models\Countryapp\models\CountrySearchapp\controllers\CountryControllerhttps://hostname/index.php?r=country%2Findex
controllers/CountryController.phpmodels/Country.php and models/CountrySearch.phpviews/country/*.php