Am trying to return related data but it fails
SO in my controller i have
$query = EmployeeTasks::with('employee')->find()->all();
return ["data"=>$query]
IN my EmployeeTasks i have the details relationship like
public function getEmployee()
{
return $this->hasOne(CasualEmployees::className(), ['id' => 'employee_id']);
}
But the data returned doesnt have the employee data even though there should be
Where am i going wrong?
Dumpo of $query has
[{name:'paint', created_at:1532508029....}] it doesnt have employee