fix on customer auth, fix filters on shelves, refactor for article_nature, add slug

This commit is contained in:
ludo
2023-10-17 17:20:30 +02:00
parent 50d5d6944d
commit f3b9db1a6f
30 changed files with 1205 additions and 177 deletions

View File

@@ -1,12 +1,19 @@
<div class="row">
<div class="col-12">
<span style="font-size: 1.4em">
@if ($article['merchandises'] ?? false)
{{ $article['merchandises']['price'] ?? null }}</span>
@else
-
@endif
</span><br/>
<strong>Marchandise</strong>
@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>
</div>
@endif