diff --git a/app/Traits/Relationships.php b/app/Traits/Relationships.php index 1112a6b24..cac385563 100644 --- a/app/Traits/Relationships.php +++ b/app/Traits/Relationships.php @@ -25,7 +25,7 @@ trait Relationships } $text = Str::contains($text, '::') ? $text : 'general.' . $text; - $counter[] = $c . ' ' . strtolower(trans_choice($text, ($c > 1) ? 2 : 1)); + $counter[] = (($c > 1) ? $c . ' ' : null ) . strtolower(trans_choice($text, ($c > 1) ? 2 : 1)); } return $counter;