@if (!empty($product->logo_urls))

@endif
{{ strLimit($product->product_name, 20) }}
@if ($product->denomination_type == 'RANGE')
{{ getAmount($product->min_recipient_denomination) }}
{{ $product->recipient_currency_code }}
-
{{ getAmount($product->max_recipient_denomination) }}
{{ $product->recipient_currency_code }}
@else
@forelse (@$product->fixed_recipient_denominations ?? [] as $fix)
{{ getAmount($fix) }} {{ $product->recipient_currency_code }}
@if (!$loop->last)
,
@endif
@if ($loop->index == 3)
@break
@endif
@empty
@lang('N/A')
@endforelse
@endif