自分のfatherが送ったミーティングを検索すると思います。

このコミットが含まれているのは:
守矢諏訪子 2021-11-08 18:36:53 +09:00
コミット 10c983a861
1個のファイルの変更6行の追加0行の削除

ファイルの表示

@ -353,6 +353,9 @@ class MeetingsController extends Controller {
}
foreach ($list as $i => $l) {
if (null === ($fr = FatherRelation::select('id')->where('father_id', (int)$l->father_id)->where('child_id', (int)$r->child_id)->first())) {
continue;
}
if (null === ($l->father = Father::select($father_select)->where('id', (int)$l->father_id)->first())) {
$l->father = new \stdClass();
}
@ -381,6 +384,9 @@ class MeetingsController extends Controller {
}
foreach ($list as $i => $l) {
if (null === ($fr = FatherRelation::select('id')->where('father_id', (int)$l->father_id)->where('child_id', (int)$r->child_id)->first())) {
continue;
}
if (null === ($l->father = Father::select($father_select)->where('id', (int)$l->father_id)->first())) {
$l->father = new \stdClass();
}