'integer', ]; // ========================================================================= // Relationships // ========================================================================= public function document(): BelongsTo { return $this->belongsTo(Document::class); } // ========================================================================= // Scopes // ========================================================================= public function scopeForSection($query, int $sectionId) { return $query->where('section_id', $sectionId); } public function scopeForField($query, string $fieldKey) { return $query->where('field_key', $fieldKey); } }