You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you please help me to solve this issue?
I'm getting this error when I try to access category title like this way: echo $category->title; here is my model code
public function getTranslations()
{
return $this->hasMany(CategoryTranslation::className(), ['category_id' => 'id']);
}
public function getParentCatList(){
$model = self::find()->with('translations')->all();
echo count($model); // 3 records
foreach ($model as $category) {
echo $category->title;// this gives me error.
}
//echo "pre";
print_r($model);
exit;
}
Hi,
Can you please help me to solve this issue?
I'm getting this error when I try to access category title like this way:
echo $category->title;
here is my model codeand print_r($model) is displaying this results.
The text was updated successfully, but these errors were encountered: