@extends('layouts.app') @section('title', $collection['name'] . ' — ' . config('app.name')) @section('description', strip_tags($collection['description'] ?? '')) @section('content')

{{ $collection['name'] }}

{{ trans_choice('storefront.shop.showing_results', $products->total(), [ 'first' => $products->firstItem() ?? 0, 'last' => $products->lastItem() ?? 0, 'total' => $products->total(), ]) }}

{{-- Dummy — not wired to real sorting yet --}}
{{-- Products --}}
@if($products->isEmpty())

{{ __('storefront.shop.no_products') }}

@else
@endif
{{-- Sidebar — search, price and availability filters are dummy for now --}}
@endsection