@extends('frontend.layouts.app')
@section('title', $data['page']->meta_title)
@section('meta_keywords', $data['page']->meta_keywords)
@section('meta_description', $data['page']->meta_description)
@section('content')
@foreach($data['show_products'] as $key => $products)
@foreach($products as $sku)
@php
$product = \App\Models\Product::getProductBySKU($sku);
@endphp
@if($product)
{!! \App\Models\Product::productBlock($product, 'product-list', true, 'col-lg-3 col-md-3') !!}
@endif
@endforeach
@endforeach
@if(!\Jenssegers\Agent\Facades\Agent::isMobile())
{{--
@foreach($data['show_products'] as $key => $products)
{{ $key }}
@endforeach
--}}
@endif
@push('head-area')
@endpush
@endsection