belongsTo(User::class, 'created_by'); } /** * Relation for the user that updated this entity. * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function updatedBy() { return $this->belongsTo(User::class, 'updated_by'); } }