@if($offer->discount_value)
{{ $offer->discount_value }}%
@endif
@if($offer->promotion_value)
@if($offer->promotion_type === 'monetary')
{{ $offer->promotion_value }} {{ $offer->currency }}
@elseif($offer->promotion_type === 'percent')
{{ $offer->promotion_value }}%
@elseif(in_array($offer->promotion_type, ['upto_monetary', 'upto_percent']))
{{ admin_trans('up_to') }} {{ $offer->promotion_value }}
@endif
@endif
@if($offer->regular_price && $offer->sale_price)
{{ $offer->regular_price }} → {{ $offer->sale_price }}
@endif