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