@props([ 'value', 'type_id', 'label', 'has_prefix', 'price_suffix', 'offer_enabled', 'offer_price', 'offer_percentage', ])

@if ($type_id == 1) @if ($offer_enabled && $offer_price) {{ $value }} {{ $offer_price }} @if ($has_prefix && $price_suffix) / {{ $price_suffix }} @endif @if ($offer_percentage) {{ $offer_percentage }}% @endif @else {{ $value }} @if ($has_prefix && $price_suffix) / {{ $price_suffix }} @endif @endif @else {{ $label }} @endif