17 lines
357 B
PHP
17 lines
357 B
PHP
@extends('Shop.layout.layout', [
|
|
'title' => __('home.title'),
|
|
])
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-2">
|
|
</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 |