Browse Source

契約作成時のカスタムい識別子バリデーション修正

必須から任意へ
develop
sosuke.iwabuchi 2 years ago
parent
commit
cdf56afcfe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/Http/Controllers/Web/Contract/CreateParam.php

+ 1
- 1
app/Http/Controllers/Web/Contract/CreateParam.php View File

@@ -17,7 +17,7 @@ class CreateParam extends BaseParam
return return
[ [
Contract::COL_NAME_NAME => $this->str(), Contract::COL_NAME_NAME => $this->str(),
Contract::COL_NAME_CUSTOM => $this->str(),
Contract::COL_NAME_CUSTOM => $this->str(true),
]; ];
} }
} }

Loading…
Cancel
Save