Files
opensem/resources/views/Shop/Articles/partials/article.blade.php
Ludovic CANDELLIER 9c2b9cf02e wip 3d
2022-04-13 23:49:48 +02:00

36 lines
1.1 KiB
PHP

<a href="{{ route('Shop.Articles.show', ['id' => $article['semences']['article_id'] ?? false ]) }}" class="green-dark">
<div class="card bg-green-light">
<img src="{{ App\Repositories\Shop\Articles::getPreviewSrc($article['image'] ?? false) }}" class="card-img-top" alt="{{ $product_name }}">
<div class="card-body">
<div class="row card-title">
<div class="col-10">
<div class="mb-0" style="font-size: 1.3em;">{{ $article['parent_name'] }}</div>
{{ $article['product_name'] }}
</div>
<div class="col-2 p-0 text-right" style="font-size: 2em; color: red;">
<i class="fa fa-heart"></i>
</div>
</div>
<div class="row">
<div class="col-6">
<strong>Semence</strong>
@if ($article['semences'] ?? false)
<span style="font-size: 1.4em">{{ $article['semences']['price'] ?? null }}</span> <br>
@else
Indisponible<br>
@endif
</div>
<div class="col-6">
<strong>Plant</strong>
@if ($article['plants'] ?? false)
<span style="font-size: 1.4em">{{ $article['plants']['price'] }}</span> <br>
@else
Indisponible<br>
@endif
</div>
</div>
</div>
</div>
</a>