このコミットが含まれているのは:
dragon1211 2022-01-08 17:43:42 -08:00
コミット be13040af1
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -26,7 +26,7 @@ class FatherRelationsController extends Controller {
}
public function check (Request $r) {
$father_id = request()->route()->action['as'] == 'chknull_parent' ? (int)session()->get('fathers')['id'] : (int)$r->father_id;
$father_id = request()->route()->action['as'] == 'chk_parent' ? (int)session()->get('fathers')['id'] : (int)$r->father_id;
$father = Father::select('relation_limit')->where('id', $father_id)->first();