@extends('web.layouts.layout') @section('content')
@include('web.pages.components.header.header')
@if(count($products) > 0)
@foreach($products as $row)
@include('web.pages.components.products.card',['product'=>$row])
@endforeach
@if(!($products->hasMorePages() == false && $products->currentPage() == 1)) @endif
@else @include('web.pages.components.not_found',['message'=>__('web.not_exist_products_search')]) @endif
@stop