@extends('frontend.layouts.app')
@section('content')
@include('frontend.partials.ad-slot', ['slotKey' => 'list', 'title' => '推广位'])
@forelse($products as $product)
@include('frontend.partials.product-card', ['product' => $product])
@empty
暂无搜索结果
@endforelse
@endsection