@if($product->enable_stock)
Qty: {{ number_format($product->qty_available) }}
@else
--
@endif
@php
$fullName = $product->name;
if ($product->type == 'variable' && !empty($product->variation)) {
$fullName .= ' - ' . $product->variation;
}
$words = explode(' ', $fullName);
$shortText = implode(' ', array_slice($words, 0, 3));
@endphp
{{ $fullName }}
@format_currency($product->sell_price_inc_tax)
{{--
({{ number_format($product->selling_price, 2) }})
--}}