belongsTo(User::class, 'created_by'); } /** * Get the employee reviews for this review cycle. */ public function reviews() { return $this->hasMany(EmployeeReview::class, 'review_cycle_id'); } }