Files
sam-api/app/Http/Requests/ItemMaster/IndependentSectionStoreRequest.php
hskwon bccfa19791 feat: Item Master 하이브리드 구조 전환 및 독립 API 추가
- CASCADE FK → 독립 엔티티 + entity_relationships 링크 테이블
- 독립 API 10개 추가 (섹션/필드/BOM CRUD, clone, usage)
- SectionTemplate 모델 제거 → ItemSection.is_template 통합
- 페이지-섹션, 섹션-필드, 섹션-BOM 링크/언링크 API 14개 추가
- Swagger 문서 업데이트
2025-11-26 14:09:31 +09:00

26 lines
590 B
PHP

<?php
namespace App\Http\Requests\ItemMaster;
use Illuminate\Foundation\Http\FormRequest;
class IndependentSectionStoreRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'group_id' => 'nullable|integer',
'title' => 'required|string|max:255',
'type' => 'required|in:fields,bom',
'is_template' => 'nullable|boolean',
'is_default' => 'nullable|boolean',
'description' => 'nullable|string',
];
}
}