19 lines
652 B
PHP
19 lines
652 B
PHP
@if ($article_nature ?? false)
|
|
<div class="row">
|
|
<div class="col-7">
|
|
<strong>{{ $article_nature }}</strong><br/>
|
|
<small>
|
|
{{ $article[$article_nature]['variation'] ?? null }}
|
|
</small>
|
|
</div>
|
|
<div class="col-5 text-right" style="font-weight: 700; font-size: 1.1em;">
|
|
<span style="font-size: 1.4em">
|
|
@if ($article[$article_nature] ?? false)
|
|
{{ $article[$article_nature]['price'] ?? null }}</span> €
|
|
@else
|
|
-
|
|
@endif
|
|
</span><br/>
|
|
</div>
|
|
</div>
|
|
@endif |