|
- <?php
-
- namespace App\Http\Controllers\Web\Contract;
-
- use App\Http\Controllers\Web\BaseParam;
- use App\Models\Contract;
-
- /**
- * @property string $name
- * @property ?string $custom
- * @property ?string $contractCode
- */
-
- class CreateParam extends BaseParam
- {
- public function rules(): array
- {
- return
- [
- Contract::COL_NAME_NAME => $this->str(),
- Contract::COL_NAME_CUSTOM => $this->str(true),
- Contract::COL_NAME_CONTRACT_CODE => $this->str(true),
- ];
- }
- }
|