- feat: QMS 감사 체크리스트 (AuditChecklist CRUD, 카테고리/항목/표준문서 모델, 마이그레이션) - feat: QMS LOT 감사 (QmsLotAudit 컨트롤러/서비스, 확인/문서상세 FormRequest) - fix: CalendarService, MemberService 수정 - chore: QualityDocumentLocation options 컬럼 추가, tenant_id 마이그레이션, 품질 더미데이터 시더
24 lines
509 B
PHP
24 lines
509 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Qms;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class QmsLotAuditIndexRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'year' => 'nullable|integer|min:2020|max:2100',
|
|
'quarter' => 'nullable|integer|in:1,2,3,4',
|
|
'q' => 'nullable|string|max:100',
|
|
'per_page' => 'nullable|integer|min:1|max:100',
|
|
];
|
|
}
|
|
}
|