@extends('layouts.front.app') @section('content')
@if(!$products->count() != 0)
Nenhum resultado para "{{ request()->input('search') }}"
@else

Resultado da busca por "{{ request()->input('search') }}"


@include(config('site.domain').'.front.products.product-list-search', ['search' => $products])
@include(config('site.domain').'.front.products.product-list-search-mobile', ['search' => $products])
@endif
@endsection