'float', ]; /** * Get the review that owns this rating. */ public function review() { return $this->belongsTo(EmployeeReview::class, 'employee_review_id'); } /** * Get the performance indicator for this rating. */ public function indicator() { return $this->belongsTo(PerformanceIndicator::class, 'performance_indicator_id'); } }