@extends('frontend.layouts.app') @section('content') @if($flash_deal->status == 1 && strtotime(date('Y-m-d H:i:s')) <= $flash_deal->end_date)
{{ $flash_deal->title }}

{{ $flash_deal->title }}

@foreach ($flash_deal->flash_deal_products as $key => $flash_deal_product) @php $product = \App\Models\Product::find($flash_deal_product->product_id); @endphp @if (isset($product) && $product->published != 0)
@include('frontend.partials.product_box_1',['product' => $product])
@endif @endforeach
@else
{{ $flash_deal->title }}

{{ $flash_deal->title }}

{{ translate('This offer has been expired.') }}

@endif @endsection