- feat: QMS 감사 체크리스트 (AuditChecklist CRUD, 카테고리/항목/표준문서 모델, 마이그레이션) - feat: QMS LOT 감사 (QmsLotAudit 컨트롤러/서비스, 확인/문서상세 FormRequest) - fix: CalendarService, MemberService 수정 - chore: QualityDocumentLocation options 컬럼 추가, tenant_id 마이그레이션, 품질 더미데이터 시더
38 lines
781 B
PHP
38 lines
781 B
PHP
<?php
|
|
|
|
namespace App\Models\Qualitys;
|
|
|
|
use App\Models\Documents\Document;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class AuditStandardDocument extends Model
|
|
{
|
|
protected $table = 'audit_standard_documents';
|
|
|
|
protected $fillable = [
|
|
'tenant_id',
|
|
'checklist_item_id',
|
|
'title',
|
|
'version',
|
|
'date',
|
|
'document_id',
|
|
'options',
|
|
];
|
|
|
|
protected $casts = [
|
|
'date' => 'date',
|
|
'options' => 'array',
|
|
];
|
|
|
|
public function checklistItem(): BelongsTo
|
|
{
|
|
return $this->belongsTo(AuditChecklistItem::class, 'checklist_item_id');
|
|
}
|
|
|
|
public function document(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Document::class);
|
|
}
|
|
}
|