@php
$hasDiscount = !is_null($product->discount_price) && $product->discount_price > 0;
$basePrice = $product->price ?: 0;
$finalPrice = $hasDiscount ? $product->discount_price : $basePrice;
$discountPercent =
$hasDiscount && $basePrice > 0
? round((($basePrice - $product->discount_price) / $basePrice) * 100)
: null;
@endphp
{{ $product->name }}
{{ $product->product_code }}
BDT: {{ number_format($finalPrice, 2) }} Tk
@if ($hasDiscount)
{{ number_format($basePrice, 2) }} Tk
@endif
@if ($discountPercent)
{{ $discountPercent }}% OFF
@endif
@php
$hasSize = false;
foreach ($product->variants as $item) {
if (!is_null($item->size)) {
$hasSize = true;
break;
}
}
@endphp
@if ($hasSize)
Regular Fit (Set)
| Size Guide for
Kabli |
|
|
|
|
|
|
|
| Measurement
Points |
XS |
S |
M |
L |
XL |
2XL |
3XL |
| 1/2 CHEST |
19.75 |
20.5 |
21.75 |
22.75 |
24 |
25.25 |
26.75 |
| BODY LENGTH |
41.25 |
42 |
43.25 |
46.5 |
47.25 |
47.25 |
47.25 |
| Size Guide for
Trousers |
|
|
|
|
|
|
|
| WAIST RANGE |
27-29 |
30-32 |
33-34 |
35-36 |
37-38 |
39-42 |
43-47 |
| FULL LENGTH |
37.75 |
38.5 |
39.25 |
40 |
41 |
41.75 |
42.5 |
| FULL LEG
OPENING |
12.25 |
12.5 |
13 |
13.25 |
13.75 |
14 |
14.5 |
Regular fit (Set)
| Size Guide for
Kabli |
|
|
|
|
|
|
|
| Measurement
Points |
XS |
S |
M |
L |
XL |
2XL |
3XL |
| 1/2 Chest |
50 |
52.5 |
55 |
58 |
61 |
64 |
68 |
| Body Length |
105 |
107 |
110 |
118 |
120 |
120 |
120 |
| Size Guide for
Trousers |
|
|
|
|
|
|
|
| Waist Range |
68.5 - 73.5 |
76 - 81 |
83 - 86 |
89 - 91.5 |
94 - 96.5 |
99 - 106.5 |
109-119.5 |
| Full Length |
96 |
98 |
100 |
102 |
104 |
106 |
108 |
| Full leg
Opening |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
@endif