@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
{!! \App\Models\Product::productBlock($product, 'special') !!}
@endforeach
@endforeach
@if(!\Jenssegers\Agent\Facades\Agent::isMobile())
@foreach($data['show_products'] as $key => $products)
{{ $key }}
@endforeach
@endif
@push('head-area')
@endpush
@endsection