fastadmin 关联预载入,指定属性查询(只显示某字段,类似于visible)

$list = User::field('id,name')->with(['profile'=>function($query){$query->field('email,phone');}])->select([1,2,3]);
foreach($list as $user){
    // 获取用户关联的profile模型数据
    dump($user->profile);
}

 

posted @ 2023-10-09 09:15  blog_zss小帅-博客猿  阅读(305)  评论(0编辑  收藏  举报