get('fathers'))) { session()->forget('fathers'); return $response; } if (null !== ($list = Meeting::select('id')->where('father_id', (int)session()->get('fathers')['id'])->get())) { foreach ($list as $i => $l) { if (null === ($apr = MeetingApprovals::select('id')->where('meeting_id', (int)$l->id)->get())) { continue; } $cnt = MeetingApprovals::select('id')->whereNotNull('approval_at')->where('meeting_id', (int)$l->id)->count(); $apr = count($apr); if ($apr == $cnt) { continue; } $count++; } } $content = json_decode($response->content(), true); if (json_last_error() == JSON_ERROR_NONE) { $response->setContent(json_encode(array_merge($content, ['notice' => $count]))); } return $response; } }