This commit is contained in:
Ludovic CANDELLIER
2022-11-11 13:05:40 +01:00
parent f89acd9399
commit 7df2421373
104 changed files with 1212 additions and 764 deletions

View File

@@ -1,13 +1,33 @@
<div class="row">
<div class="col-12 text-right">
@if ($display_by_rows ?? false)
@include('components.form.button', ['id' => 'by_cards', 'icon' => 'fa-th', 'class' => 'btn-secondary'])
@include('components.form.button', [
'id' => 'by_cards',
'icon' => 'fa-th',
'class' => 'btn-secondary',
'title' => 'Vue par vignettes',
])
@else
@include('components.form.button', ['id' => 'by_rows', 'icon' => 'fa-list', 'class' => 'btn-secondary'])
@include('components.form.button', [
'id' => 'by_rows',
'icon' => 'fa-list',
'class' => 'btn-secondary',
'title' => 'Vue par lignes',
])
@endif
@include('components.form.button', ['data_id' => 'botanic', 'icon' => 'fa-leaf', 'class' => 'products bg-yellow yellow-dark'])
@include('components.form.button', ['data_id' => 'merchandise', 'icon' => 'fa-seedling', 'class' => 'products bg-green text-white'])
@include('components.form.button', [
'data_id' => 'botanic',
'icon' => 'fa-leaf',
'class' => 'products bg-yellow yellow-dark',
'title' => 'Par semences',
])
@include('components.form.button', [
'data_id' => 'merchandise',
'icon' => 'fa-seedling',
'class' => 'products bg-green text-white',
'title' => 'Par plants',
])
</div>
</div>

View File

@@ -35,7 +35,7 @@
@else
@include('Shop.Shelves.partials.category_articles')
@endif
</form>
{{ Form::close() }}
@endsection