belongsTo(User::class, 'employee_id'); } /** * Get the designation for this promotion. */ public function designation() { return $this->belongsTo(Designation::class); } /** * Get the user who created this promotion. */ public function creator() { return $this->belongsTo(User::class, 'created_by'); } }