@extends('layouts.app') @push('styles') @endpush @section('content')

⚡ FLASH SALE ⚡

Diskon Hingga 50%!

@if($flashSale && $flashSale->end_time)
00 Hari
00 Jam
00 Menit
00 Detik
@endif
@if($products->count() > 0)
@foreach($products as $product)
FLASH SALE
@if($product->discount_price && $product->discount_price < $product->price)
-{{ round((($product->price - $product->discount_price) / $product->price) * 100) }}%
@endif
@if($product->brand && $product->brand->image_url) {{ $product->name }} @else
@endif
@if($product->brand)

{{ $product->brand->brand }}

@endif

{{ $product->name }}

@if($product->discount_price && $product->discount_price < $product->price)
Rp {{ number_format($product->price, 0, ',', '.') }}

Rp {{ number_format($product->discount_price, 0, ',', '.') }}

@else

Rp {{ number_format($product->price, 0, ',', '.') }}

@endif
@if(isset($product->stock) && $product->stock > 0)
Stok tersisa {{ $product->stock }} item
@endif Beli Sekarang
@endforeach
@else

Flash Sale Belum Dimulai

Nantikan flash sale berikutnya untuk penawaran menarik!

Kembali ke Home
@endif @push('scripts') @if($flashSale && $flashSale->end_time) @endif @endpush @endsection