@php $products = DB::table('products')->where('is_active', true)->where('is_online', true)->whereIn('id',$recently_viewed)->offset(0)->limit(20)->get(); @endphp

{{trans('file.Recently Viewed')}}

@if(count($products) > 5 && $ecommerce_setting->theme != 'fashion')
chevron_right
chevron_left
@endif
@forelse ($products as $product)
@include('ecommerce::frontend.includes.product-template')
@empty @endforelse
@if(count($products) > 4 && $ecommerce_setting->theme == 'fashion')
chevron_right
chevron_left
@endif