belongsTo(User::class, 'employee_id'); } /** * Get the document type of this document. */ public function documentType() { return $this->belongsTo(DocumentType::class); } /** * Get the user who created the document. */ public function creator() { return $this->belongsTo(User::class, 'created_by'); } }