Files
opensem/resources/views/Shop/Search/results.blade.php
2023-02-07 23:25:59 +01:00

16 lines
340 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