public function getCar()
{
return $this->hasOne(Car::className(), ['id' => 'car_id']);
}public function getBrand()
{
return $this->hasOne(Brand::className(), [
'id' => $this->brand_id
]);
}$model->car->brand->nameGetting unknown property: app\models\Car::4