|
{{ $supplier->name }}
@if($isCurrent)
CURRENT
@endif
@if($rank == 1)
BEST
@endif
|
€ {{ number_format($supplier->cost,4) }}
|
{{ $supplier->stock }}
|
#{{ $rank }}
|
@if($margin !== null)
{{ $margin }}%
@else
-
@endif
|
@if($impact === null)
-
@elseif($impact > 0)
+{{ $impact }}%
@elseif($impact < 0)
{{ $impact }}%
@else
0%
@endif
|
@if($priceSuggestion)
€ {{ number_format($priceSuggestion,2) }}
@else
-
@endif
|
@if(!$isCurrent)
@else
Active
@endif
|
@php
$rank++;
@endphp
@empty