{{ $productt->name }}

{{ PriceHelper::showAdminCurrencyPrice($item['item_price']) }}
{{-- PRODUCT SIZE SECTION --}} @if(!empty($productt->size))

{{ __('Size :') }}

@endif {{-- PRODUCT SIZE SECTION ENDS --}} {{-- PRODUCT COLOR SECTION --}} @if(!empty($productt->color))
{{ __('Color :') }}
@endif {{-- PRODUCT COLOR SECTION ENDS --}} {{-- PRODUCT STOCK CONDITION SECTION --}} @if(is_array($productt->size)) @else @if(!$productt->emptyStock()) @elseif($productt->type != 'Physical') @else @endif @endif {{-- PRODUCT STOCK CONDITION SECTION ENDS --}} {{-- PRODUCT ATTRIBUTE SECTION --}} @if (!empty($productt->attributes)) @php $attrArr = json_decode($productt->attributes, true); @endphp @endif @if (!empty($attrArr))
@foreach ($attrArr as $attrKey => $attrVal) @if (array_key_exists("details_status",$attrVal) && $attrVal['details_status'] == 1)
{{ str_replace("_", " ", $attrKey) }} :
@foreach ($attrVal['values'] as $optionKey => $optionVal)
@endforeach
@endif @endforeach
@endif {{-- PRODUCT ATTRIBUTE SECTION ENDS --}}