- field_key regex를 숫자 시작도 허용하도록 변경 (기존 데이터 39건 호환) - Handler.php 422 응답에 errors 최상위 필드 추가 (프론트엔드 호환)
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\ItemMaster;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ItemFieldStoreRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'group_id' => 'nullable|integer|min:1', // 계층번호
|
|
'field_name' => 'required|string|max:255',
|
|
'field_key' => 'nullable|string|max:80|regex:/^[a-zA-Z0-9][a-zA-Z0-9_]*$/',
|
|
'field_type' => 'required|in:textbox,number,dropdown,checkbox,date,textarea',
|
|
'is_required' => 'nullable|boolean',
|
|
'default_value' => 'nullable|string',
|
|
'placeholder' => 'nullable|string|max:255',
|
|
'display_condition' => 'nullable|array',
|
|
'validation_rules' => 'nullable|array',
|
|
'options' => 'nullable|array',
|
|
'properties' => 'nullable|array',
|
|
'is_active' => 'nullable|boolean',
|
|
'is_locked' => 'nullable|boolean',
|
|
];
|
|
}
|
|
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'field_key.regex' => __('validation.field_key_format'),
|
|
];
|
|
}
|
|
}
|