@extends('Shop.layout.layout', [ 'title' => __('home.title'), ]) @section('content')
{!! $article['image_big'] !!}

{{ $article['name'] }}

{!! $article['description'] !!}
@if ($article['offers']['semences'] ?? false) @component('components.card', [ 'title' => 'Semence', 'class' => 'mb-3', ]) {{ $article['offers']['semences']['name'] }}
{{ $article['offers']['semences']['prices'][0]['price_taxed'] }}
@include('components.form.button', [ 'class' => 'btn-success basket semences', 'txt' => 'Ajouter au panier', ]) @endcomponent @endif @if ($article['offers']['plants'] ?? false) @component('components.card', [ 'title' => 'Plant', 'class' => 'mb-3', ]) {{ $article['offers']['plants']['name'] }}
{{ $article['offers']['plants']['prices'][0]['price_taxed'] }}
@include('components.form.button', [ 'class' => 'btn-success basket plants', 'txt' => 'Ajouter au panier', ]) @endcomponent @endif @if ($article['offers']['legumes'] ?? false) @component('components.card', [ 'title' => 'Légume', 'class' => 'mb-3', ]) @include('components.form.button', [ 'class' => 'btn-success basket legumes', 'txt' => 'Ajouter au panier', ]) @endcomponent @endif
@endsection