@if(count($product_ids) > 0)
@foreach ($product_ids as $key => $id) @php $product = \App\Product::findOrFail($id); $flash_deal_product = \App\FlashDealProduct::where('flash_deal_id', $flash_deal_id)->where('product_id', $product->id)->first(); @endphp @if ($flash_deal_product != null) @else @endif @endforeach
Image
@endif