@foreach ($product->variations as $variation)
    @foreach ($variation->values as $value)
  • @if ($variation->type === 'text') {{ $value->label }} @elseif ($variation->type === 'color')
    @elseif ($variation->type === 'image') {{ $value->label }} @endif
  • @endforeach
@endforeach