Files
opensem/resources/views/Shop/home.blade.php
2022-01-22 13:12:43 +01:00

18 lines
398 B
PHP

@extends('Shop.layout.layout', [
'title' => __('home.title'),
])
@section('content')
<div class="row">
<div class="col-2">
@include('Shop.Tags.partials.filter')
</div>
<div class="col-10">
@if ($display_by_rows ?? false)
@include('Shop.layout.partials.category_articles_rows')
@else
@include('Shop.layout.partials.category_articles')
@endif
</div>
</div>
@endsection