@if($row->threshold_percent)
{{ number_format($row->threshold_percent, 0) }}%
@elseif($row->from_amount || $row->to_amount)
@if($row->from_amount && $row->to_amount)
{{ number_format($row->from_amount, 0, ',', ' ') }}€ - {{ number_format($row->to_amount, 0, ',', ' ') }}€
@elseif($row->from_amount)
≥ {{ number_format($row->from_amount, 0, ',', ' ') }}€
@else
≤ {{ number_format($row->to_amount, 0, ',', ' ') }}€
@endif
@else
-
@endif