@if ($product->hasAnyAttribute())
@foreach ($product->attributeSets as $attributeSet => $attributes)
{{ $attributeSet }}
    @foreach ($attributes as $attribute)
  • {{ $attribute->values->implode('value', ', ') }}
  • @endforeach
@endforeach
@endif