'boolean', 'needs_approval' => 'boolean', 'needs_inspection' => 'boolean', 'is_active' => 'boolean', 'sort_order' => 'integer', ]; /** * 공정 */ public function process(): BelongsTo { return $this->belongsTo(Process::class); } /** * 문서 양식 (검사 시 사용할 템플릿) */ public function documentTemplate(): BelongsTo { return $this->belongsTo(DocumentTemplate::class); } }