@extends('master_layout') @section('new-layout')

{{ __('translate.Shop') }}

@include('frontend.shop.sidebar_search') @if($products->count() > 0)
@foreach($products as $product)
@include('_product')
@endforeach
@else @include('frontend.shop.not_found') @endif
@include('frontend.shop.paginate')
@endsection