{{ $tile['label'] }}
{{ $tile['value'] }} @if (! empty($tile['suffix'])) {{ $tile['suffix'] }} @endif
No priced SKUs found.
Add bottle intakes and active SKUs to see computed prices.
| SL. | Thumb | SKU | Fragrance | Brand | Size | Cost/ml | Juice Cost (Unit) | Multiplier | Bottle Cost | Computed | Override | Storefront Price | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
@if ($row->sku->effectiveImageUrl(false))
|
{{ $row->sku->code }} | {{ $row->sku->fragrance->name }} | {{ $row->sku->fragrance->brand->name }} | {{ $row->sku->decantSize->label }} | @if ($row->cost_per_ml > 0) {{ number_format($row->cost_per_ml, 2) }} @else — @endif | @if ($row->cost_per_ml > 0) {{ number_format($row->cost_per_ml * (float) $row->sku->decantSize->volume_ml, 2) }} @else — @endif | {{ number_format((float) $row->sku->decantSize->multiplier, 2) }}× | {{ number_format((float) ($row->sku->decantSize->bottle_cost ?? 0), 2) }} | @if ($row->computed > 0) {{ number_format($row->computed, 2) }} @else — @endif | @if ($row->is_override) {{ number_format($row->override, 2) }} @else — @endif |
৳
|
Formula reference
computed_price = (juice_cost_per_ml × decant_volume_ml × size_multiplier) + bottle_cost
juice_cost_per_ml = Σ cost_total ÷ Σ volume_ml (weighted average across all decant intakes for the fragrance)
If a manual override is set on the SKU, it takes precedence over the computed price.
storefront_price is editable inline and is used as the customer-facing selling price.