15 lines
339 B
PHP
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
|