fix modal

This commit is contained in:
Ludovic CANDELLIER
2023-02-27 22:02:19 +01:00
parent a63618a753
commit 753be00a1e
2 changed files with 95 additions and 195 deletions

View File

@@ -1,7 +1,7 @@
@if ($article['offers']['semences'] ?? false)
@include('Shop.Articles.partials.addBasket', [
'data' => $article['offers']['semences'],
'title' => 'Semence',
'title' => 'Semences',
'model' => 'semences',
'bgClass' => 'bg-green-light',
])
@@ -10,7 +10,7 @@
@if ($article['offers']['plants'] ?? false)
@include('Shop.Articles.partials.addBasket', [
'data' => $article['offers']['plants'],
'title' => 'Plant',
'title' => 'Plants',
'model' => 'plants',
'bgClass' => 'bg-green-light',
])
@@ -19,7 +19,7 @@
@if ($article['offers']['legumes'] ?? false)
@include('Shop.Articles.partials.addBasket', [
'data' => $article['offers']['legumes'],
'title' => 'Légume',
'title' => 'Légumes',
'model' => 'legumes',
'bgClass' => 'bg-green-light',
])