Files
opensem/resources/views/Shop/Articles/partials/article.blade.php
Ludovic CANDELLIER 36c6402f04 Fixes on grouping
2022-03-30 16:34:08 +02:00

40 lines
1.3 KiB
PHP

<a href="{{ route('Shop.Articles.show', ['id' => $article['semences']['article_id'] ?? false ]) }}">
<div class="card">
@if ($article['image'] !== null)
<img src="{{ App\Repositories\Shop\Articles::getPreviewSrc($article['image'] ?? false) }}" class="card-img-top" alt="{{ $product_name }}">
@else
<img src="img/visuel-non-disponible.jpg" class="card-img-top">
@endif
<div class="card-body">
<div class="row card-title">
<div class="col-10" style="font-weight: bold; color: green;">
<h2 style="font-size: 1.3em;">{{ $article['parent_name'] }}</h2>
{{ $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" style="color: green;">
<div class="col-6">
@if ($article['semences'] ?? false)
<span style="font-size: 1.4em; font-weight: bold;">{{ $article['semences']['price'] ?? null }}</span> <br>
@else
Indisponible<br>
@endif
Semence
</div>
<div class="col-6">
@if ($article['plants'] ?? false)
<span style="font-size: 1.4em; font-weight: bold;">{{ $article['plants']['price'] }}</span> <br>
@else
Indisponible<br>
@endif
Plant
</div>
</div>
</div>
</div>
</a>