@extends('layouts.app') @section('title', env('APP_NAME') . ' - ' . $product->name) @push('hreflangs') @foreach($hreflangs as $item) @endforeach @endpush @section('content')

{{ $product->name }}

@foreach($product->images as $index => $image)
Product image
@endforeach
@if($product->images && count($product->images) > 1) @endif

{{ $product->name }}

Ref: {{ $product->reference }}

{{ Str::limit($product->description, 300) }}

{{ __('shop.readmore') }}

    @if($product->discount)
  • {{ number_format($product->price, 2) }} €
  • {{ number_format($product->discount_type === 'percentage' ? $product->price * (1 - $product->discount / 100) : $product->price - $product->discount, 2) }} €
  • @else
  • {{ number_format($product->price, 2) }} €
  • @endif
{{ __('shop.cart_quantity') }} :
1
{!! nl2br($product->description) !!}
    @if($product->brand)
  • {{ __('shop.brand') }} : {{ $product->brand }}
  • @endif @if($product->size)
  • {{ __('shop.size') }} : {{ $product->size }}
  • @endif @if($product->diameter && $product->diameter != 'N/A')
  • {{ __('shop.diameter') }} : {{ $product->diameter }}
  • @endif @if($product->tension && $product->tension != 'N/A')
  • {{ __('shop.tension') }} : {{ $product->tension }}
  • @endif @if($product->material && $product->material != 'N/A')
  • {{ __('shop.material') }} : {{ $product->material }}
  • @endif
@endsection @section('scripts') @endsection