@extends('layouts.app') @section('content')
Zurück zum Shop
@if ($product->badge) {{ $product->badge }} @endif @if ($product->category) {{ $product->category }} @endif

{{ $product->name }}

{{ $product->short_description }}

{{ $product->price_formatted }} @if ($product->compare_at_price_formatted) {{ $product->compare_at_price_formatted }} @endif
{{ $product->stock_label }}
@csrf
@csrf
SKU {{ $product->sku ?: 'noch offen' }}
Versand @if (($product->shipping_cost_cents ?? 0) > 0) {{ number_format($product->shipping_cost_cents / 100, 2, ',', '.') }} EUR @else Kostenlos @endif
Zahlarten {{ count($paymentMethods) }} Optionen
Beschreibung

Was dieses Produkt ausmacht

{!! nl2br(e($product->description ?: $product->short_description)) !!}
@if ($product->highlights)
Highlights
    @foreach ($product->highlights as $highlight)
  • {{ $highlight }}
  • @endforeach
@endif
Versand & Zahlung

Bestellung für Deutschland

  • Versandpauschale {{ number_format(($shippingConfig['flat_rate_cents'] ?? 0) / 100, 2, ',', '.') }} EUR
  • Kostenlos ab {{ number_format(($shippingConfig['free_from_cents'] ?? 0) / 100, 2, ',', '.') }} EUR
  • Versandgebiet Deutschland
Vorkasse-Zahlarten
    @foreach ($paymentMethods as $method)
  • {{ $method['label'] }}
    {{ $method['description'] }}
  • @endforeach
@if ($relatedProducts->isNotEmpty())
Mehr im Sortiment

Das passt ebenfalls gut dazu

@endif @endsection