'datetime' ]; /** * Get the deceased associated with the document. */ public function deceased(): BelongsTo { return $this->belongsTo(Deceased::class); } /** * Get the file associated with the document. */ public function file(): BelongsTo { return $this->belongsTo(File::class); } }