このコミットが含まれているのは:
守矢諏訪子 2021-12-13 23:48:48 +09:00
コミット bd5ce2be82
1個のファイルの変更3行の追加1行の削除

ファイルの表示

@ -410,7 +410,8 @@ class FathersController extends Controller {
'email' => 'required|max:255|email',
'company' => 'max:100',
'profile' => 'max:1000',
'tel' => 'required|numeric|starts_with:0|tel_size'
'tel' => 'required|numeric|starts_with:0|tel_size',
'relation_limit' => 'required|numeric',
]);
if ($validate->fails()) {
@ -422,6 +423,7 @@ class FathersController extends Controller {
'company' => $r->company,
'profile' => $r->profile,
'tel' => $r->tel,
'relation_limit' => (int)$r->relation_limit,
];
try {