{{$product->name}}

Product image @if($product->type == 'single' && !empty($discounts[$product->variations->first()->id])) - {{@num_format($discounts[$product->variations->first()->id]->discount_amount)}}% @endif
@if($product->type == 'single' || $product->type == 'combo')

@lang('lang_v1.price'):    {{ $product->variations->first()->sell_price_inc_tax }}


@endif
@php $custom_labels = json_decode(session('business.custom_labels'), true); @endphp @if(!empty($product->product_custom_field1)) @endif @if(!empty($product->product_custom_field2)) @endif @if(!empty($product->product_custom_field3)) @endif @if(!empty($product->product_custom_field4)) @endif
@lang('product.sku'): {{$product->sku }}
@lang('product.category'): {{$product->category->name ?? '--' }}
@lang('product.sub_category'): {{$product->sub_category->name ?? '--' }}
@lang('product.brand'): {{$product->brand->name ?? '--' }}
{{ $custom_labels['product']['custom_field_1'] ?? __('lang_v1.product_custom_field1') }}: {{$product->product_custom_field1 }}
{{ $custom_labels['product']['custom_field_2'] ?? __('lang_v1.product_custom_field2') }}: {{$product->product_custom_field2 }}
{{ $custom_labels['product']['custom_field_3'] ?? __('lang_v1.product_custom_field3') }}: {{$product->product_custom_field3 }}
{{ $custom_labels['product']['custom_field_4'] ?? __('lang_v1.product_custom_field4') }}: {{$product->product_custom_field4 }}


{!! $product->product_description !!}
@if($product->type == 'variable') @include('productcatalogue::catalogue.partials.variable_product_details') @elseif($product->type == 'combo') @include('productcatalogue::catalogue.partials.combo_product_details') @endif