Files
opensem/resources/views/Shop/Search/results.blade.php
2022-05-29 00:46:04 +02:00

15 lines
339 B
PHP

@extends('Shop.layout.layout', [
'title' => __('Recherche'),
])
@section('content')
@include('Shop.Tags.partials.filter')
{{ $articles_count ?? 0 }} Résultats
@if ($display_by_rows ?? false)
@include('Shop.Shelves.partials.category_articles_rows')
@else
@include('Shop.Shelves.partials.category_articles')
@endif
@endsection