\"car_type\".
В Модели orders:
* @property CarType $car_type
public function getCarType(): ActiveQuery
{
return $this->hasOne(CarType::class, ['id' => 'car_type_id']);
}
public static function showOrders()
{
return self::find()
->with(['customer', 'brand', 'car_type'])
->orderBy(['created_at' => SORT_DESC]);
}
carType, а не car_type
уже разобрался, спасибо, думал что ссылка на поле в базе а оказывается метод
Обсуждают сегодня