@php
$countCombinatiion = count(@$package_product->seller_product_sku->product_variations);
@endphp
@foreach (@$package_product->seller_product_sku->product_variations as $key => $combination)
@if ($combination->attribute->name == 'Color')
{{ $combination->attribute->name }}:
@else
{{ $combination->attribute->name }}:
{{ $combination->attribute_value->value }}
@endif
@if ($countCombinatiion > $key + 1)
@endif
@endforeach
|
@else