@extends('layouts.lookatme')
@section('title',trans('message.home'))
@section('content')
@include('templates.lookatme.partials.slide',[
'data' => $promotions,
'hasNextPrev' => true
])
@if(!$products->isEmpty())
@foreach($products as $product)
@include('templates.lookatme.components.card',[
'title' => $product->name,
'price' => $product->price_text,
'src' => $product->picture_url,
'is_new' => $product->is_new_arrived,
'link' => route('product.detail',['id' => $product->id,'product_group' => request('product_group')]),
'discount' => $product->id_discount ? $product->discount_amount : false,
])
@endforeach
@endif
@endsection
@section('script')
@parent
@endsection