@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
@else @include('web.pages.components.not_found',['message'=>__('web.not_exist_products_fav')]) @endif
@stop