with的文档怎么不见了?另外with怎么嵌套where?
with的文档,在《Laravel 9 中文文档》 怎么找不到了?
另外,我需求在with里嵌套where要怎么弄
$allLsit = UserIdentStatus::where('ident_status', 10)
->with('user_ident_by_company:id,user_id,store_pic,company_name','merchant_goods')
->where('company_name', 'like', '%'.$keyword.'%')
->orderBy('created_at', 'desc')
->paginate(4);
现在这么写,查询不到,因为company_name
在user_ident_by_company
表
模型关联《Laravel 9 中文文档》