M Majid DS mds
GitHub

mds components

mds:product-card

A whole product tile: image, title, price, rating and a badge.

Ships today
Samsung Galaxy S25 smartphone, 256 GB

Samsung Galaxy S25 smartphone, 256 GB

13%
48,900,000
42,500,000 Toman
<mds:product-card
    title="Samsung Galaxy S25 smartphone, 256 GB"
    image="https://picsum.photos/seed/phone/400/400"
    :amount="42500000"
    :original="48900000"
    :rating="4.6"
    :reviews="342"
    badge="Ships today"
    href="#"
    class="max-w-56"
/>

With an action

Anything in the slot lands under the price.

AirSound Pro wireless headphones

1,890,000 Toman
<mds:product-card
    title="AirSound Pro wireless headphones"
    image="https://picsum.photos/seed/headphone/400/400"
    :amount="1890000"
    :rating="4.1"
    :reviews="87"
    href="#"
    class="max-w-56"
>
    <flux:button variant="primary" size="sm" class="w-full">Add to cart</flux:button>
</mds:product-card>

Out of stock

unavailable drops the price and shows the out-of-stock label instead — "Out of stock" here, ناموجود in Persian.

<mds:product-card
    title="Fit Band 8 smart watch"
    image="https://picsum.photos/seed/watch/400/400"
    unavailable
    href="#"
    class="max-w-56"
/>

Badge color

Bestseller
One Hundred Years of Solitude

One Hundred Years of Solitude

30%
350,000
245,000 Toman
<mds:product-card
    title="One Hundred Years of Solitude"
    image="https://picsum.photos/seed/book/400/400"
    :amount="245000"
    :original="350000"
    badge="Bestseller"
    badge-color="amber"
    href="#"
    class="max-w-56"
/>

Persian output

config('mds.persian_digits') — on by default in a real app, off in these docs — switches the price, rating and built-in strings (ناموجود for out of stock) to Persian; :fa="true" does it for a single card.

ارسال امروز
گوشی موبایل سامسونگ مدل Galaxy S25 ظرفیت ۲۵۶ گیگابایت

گوشی موبایل سامسونگ مدل Galaxy S25 ظرفیت ۲۵۶ گیگابایت

۱۳٪
۴۸٬۹۰۰٬۰۰۰
۴۲٬۵۰۰٬۰۰۰ تومان
<mds:product-card
    title="گوشی موبایل سامسونگ مدل Galaxy S25 ظرفیت ۲۵۶ گیگابایت"
    image="https://picsum.photos/seed/phone/400/400"
    :amount="42500000"
    :original="48900000"
    :rating="4.6"
    :reviews="342"
    badge="ارسال امروز"
    href="#"
    :fa="true"
    currency="toman"
    class="max-w-56"
/>

Reference

mds:product-card

PropDescription
titleProduct name. Clamped to two lines.
imageImage URL.
hrefLink target for the whole card.
amountCurrent price.
originalPre-discount price; adds the strikethrough and badge.
currencyPassed through to mds:price.
ratingStar rating.
reviewsReview count.
badgeCorner badge text.
badge-colorBadge color. Default: lime.
unavailableMarks the product out of stock: the price is replaced with "Out of stock", or ناموجود in Persian. Default: false.
faPersian digits and built-in strings. Default: config('mds.persian_digits').

Related