@extends('layouts.app') @section('content') {{--
Promotional Banner
--}}

ALL PRODUCTS

@forelse($products as $product)
@if ($product->discount_percentage > 0) -{{ $product->discount_percentage }}% @endif @if ($product->image) {{ $product->name }} @else {{ $product->name }} @endif

{{ $product->name }}

@if ($product->compare_price > $product->price)

৳{{ number_format($product->price, 2) }} ৳{{ number_format($product->compare_price, 2) }}

@else

৳{{ number_format($product->price, 2) }}

@endif
@empty

No products available at the moment.

@endforelse
@include('components.product-options-modal') @endsection