40 lines
1.2 KiB
PHP
40 lines
1.2 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-12">
|
|
<!--
|
|
<i class="fa fa-heart red"></i>
|
|
-->
|
|
<div class="text-truncate mb-0" style="font-size: 1.3em;">{{ $article['parent_name'] }}</div>
|
|
<div class="text-truncate">{{ $article['product_name'] }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<span style="font-size: 1.4em">
|
|
@if ($article['semences'] ?? false)
|
|
{{ $article['semences']['price'] ?? null }}</span> €
|
|
@else
|
|
-
|
|
@endif
|
|
</span><br/>
|
|
<strong>Semence</strong>
|
|
</div>
|
|
<div class="col-6">
|
|
<span style="font-size: 1.4em">
|
|
@if ($article['plants'] ?? false)
|
|
{{ $article['plants']['price'] }}</span> €
|
|
@else
|
|
-
|
|
@endif
|
|
</span><br/>
|
|
<strong>Plant</strong>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|