@extends('layouts.front-end.app') @section('title','Flash Deal Products') @push('css_or_js') @endpush @section('content')
Shop Converse
@php($flash_deals=\App\Models\FlashDeal::with(['products.product.reviews'])->where(['status'=>1])->whereDate('start_date','<=',date('Y-m-d'))->whereDate('end_date','>=',date('Y-m-d'))->first())
{{$flash_deals['title']}} : : :

@if($discountPrice) @foreach($deal->products as $dp)
@include('web-views.partials._single-product',['product'=>$dp->product])
@endforeach @endif

{{-- --}}
@endsection @push('script') @endpush