数据被软删除后关联的数据还想关联到该数据 需要在关联方式(hasOne,hasMany,belongsTo)等后面加withTrashed();
public function get_father()
{
return $this->hasOne(MakeCommentReply
::class, 'id', 'pid')
->withTrashed()
->with(['get_user']);
}
转载请注明原文地址:https://tech.qufami.com/read-14013.html