@if ($product->featured_image)
@endif
{!! $product->{'description_' . app()->getLocale()} !!}
@if (!empty($product->features))
{{ __('Key Features') }}
@foreach ($product->features as $feature)
- {{ $feature }}
@endforeach
@endif
@if (!empty($product->specifications))
{{ __('Specifications') }}
@foreach ($product->specifications as $key => $value)
{{ $key }}: {{ $value }}
@endforeach
@endif
@if (!empty($product->pricing))
{{ __('Pricing') }}
@foreach ($product->pricing as $model)
{{ $model['name'] ?? '' }}
{{ $model['description'] ?? '' }}
{{ $model['price'] ?? '' }}
@endforeach
@endif
@if (!empty($product->technologies))
{{ __('Technologies Used') }}
@foreach ($product->technologies as $tech)
{{ $tech }}
@endforeach
@endif