22 lines
617 B
PHP
22 lines
617 B
PHP
<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> |