@inject ('productViewHelper', 'Webkul\Product\Helpers\View') {!! view_render_event('bagisto.shop.products.view.attributes.before', ['product' => $product]) !!} @php $customAttributeValues = $productViewHelper->getAdditionalData($product); @endphp @if ($customAttributeValues) @foreach ($customAttributeValues as $attribute) @if (!empty($attribute['value']))

{{ $attribute['label'] ?? $attribute['admin_name'] }}

@if ($attribute['type'] == 'file') Download @elseif ($attribute['type'] == 'image') @else {!! nl2br(e($attribute['value'])) !!} @endif
@endif @endforeach @endif {!! view_render_event('bagisto.shop.products.view.attributes.after', ['product' => $product]) !!}