Files
opensem/resources/views/Shop/home.blade.php
2022-01-18 23:39:27 +01:00

11 lines
256 B
PHP

@extends('Shop.layout.layout', [
'title' => __('home.title'),
])
@section('content')
@if ($display_by_rows ?? true)
@include('Shop.layout.partials.category_articles_rows')
@else
@include('Shop.layout.partials.category_articles')
@endif
@endsection