public function relations()
{
return [
'profile' => [static::HAS_ONE, 'Profile', ['user_id'=>'id']],
'posts' => [static::HAS_MANY, 'Posts', ['user_id'=>'user_id']]
];
}
$user->profile->name;
$user->profile->family;
foreach ($user->posts as $post) {
$post->name;
$post->text;
}