@foreach($decodedData['data']['offer'] as $index => $offer)
@if ($index === 0)
{{ $offer['discount'] }} {{ $offer['code'] }}
{{ $offer['name'] ?? __('front.offer_placeholder_title') }}
@else
@if ($index === 1)
@endif
{{ $offer['discount'] }} {{ $offer['code'] }}
{{ $offer['name'] ?? __('front.offer_placeholder_title') }}
@if ($index === count($decodedData['data']['offer']) - 1)
@endif
@endif
@endforeach