$stores = Store::where($where)
->with([
'channel' => function ($query) {
$query->select('id', 'channel_name');
},
])
->select('store_group_id')
->paginate($page_size)
->toArray();
这个查询中,with中的数据,会作为store中的一个字段,值为array的形式返回
怎样使这个数组合并到父表中的数据呢?