@include('components.multi-images', [
'image' => $article['image'],
'images' => $article['images'],
])
{!! $article['description']['semences'] ?? null !!}
{!! $article['description']['plants'] ?? null !!}
{!! $article['description']['variety'] ?? null !!}
{!! $article['description']['merchandise'] ?? null !!}
@if ($article['description']['plus'] ?? false)
Spécificités
{!! $article['description']['plus'] !!}
@endif
@if (count($article['tags'] ?? []))
Caractéristiques
@foreach ($article['tags'] as $tag_group => $items)
{{ $tag_group }} :
@foreach ($items as $tag)
{{ $tag }}
@endforeach
@endforeach
@endif
@if ($article['description']['specie'] ?? false)
Complément
{!! $article['description']['specie'] ?? null !!}
{!! $article['description']['producer'] ?? null !!}
@endif
@if (config('app.debug') && ($article['current_sale_channel'] ?? false))
Canal actif :
{{ $article['current_sale_channel']['name'] ?? 'N/A' }}
ID {{ $article['current_sale_channel']['id'] ?? '–' }} · Code {{ $article['current_sale_channel']['code'] ?? '–' }}
@if (!empty($article['available_sale_channels']))
Offres disponibles dans :
@foreach ($article['available_sale_channels'] as $channel)
-
• {{ $channel['name'] }}
code {{ $channel['code'] }}
@if (isset($channel['price_taxed']))
{{ number_format($channel['price_taxed'], 2, ',', ' ') }} € TTC
@if (! empty($channel['quantity']))
Qté min. {{ $channel['quantity'] }}
@endif
@endif
@endforeach
@endif
@endif
@include('Shop.Articles.partials.ArticleAddBasket')