|
|
@@ -74,7 +74,7 @@ class MeetingService extends BaseService
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- $list = $query->with(['member','city','district'])
|
|
|
+ $list = $query->with(['member','city','district','company'])
|
|
|
->withCount(['records'])
|
|
|
->orderBy('sort', 'desc')
|
|
|
->orderBy('id', 'desc')
|
|
|
@@ -172,7 +172,7 @@ class MeetingService extends BaseService
|
|
|
$id = request()->input('id');
|
|
|
}
|
|
|
|
|
|
- $info = MeetingModel::where('id', $id)
|
|
|
+ $info = MeetingModel::with(['company'])->where('id', $id)
|
|
|
->where('mark', 1)
|
|
|
->first();
|
|
|
|