Вопрос, как можно это исправить без добавления public string $customField в модель Product?
которое я достаю в select
В итоге, получается что показывается чистая таблица у которого customField пустое, но записи точно есть.
background-size
foreach ($orderStatuses as $orderStatus) {
$name = $orderStatus->group ? $orderStatus->group->name : 'TamaraGoniGusei';
$statusList[$name][$orderStatus->id] = $orderStatus->name ;
}
/**
* @return IdentityInterface
*/
public static function findByUsername($usernam): IdentityInterface
public static function findByUsername($username)
{
$ebobo = static::find()
->where(['username' => $username])
->orWhere(['email' => $username])
->one();
if($ebobo instanceof IdentityInterface){
return $ebobo;
}
throw new \yii\web\NotFoundHttpException('The user not exist.');
}