'required|integer|exists:admin_roadmap_plans,id', 'title' => 'required|string|max:255', 'description' => 'nullable|string|max:2000', 'due_date' => 'nullable|date', 'assignee_id' => 'nullable|integer|exists:users,id', 'sort_order' => 'nullable|integer', ]; } public function attributes(): array { return [ 'plan_id' => '계획', 'title' => '마일스톤 제목', 'description' => '설명', 'due_date' => '예정일', 'assignee_id' => '담당자', ]; } public function messages(): array { return [ 'plan_id.required' => '계획을 선택해주세요.', 'plan_id.exists' => '유효하지 않은 계획입니다.', 'title.required' => '마일스톤 제목은 필수입니다.', 'title.max' => '마일스톤 제목은 최대 255자까지 입력 가능합니다.', ]; } }