@extends('layouts.app') @section('robots', 'noindex,nofollow') @section('content') @includeIf('shop._styles')
@if ($order->isPaid()) Zahlung erhalten @else Bestellung eingegangen @endif Nr. {{ $order->order_number }}

Danke für deine Bestellung!

@if ($owns) @if ($order->isPaid())

Hallo {{ $order->customer_full_name }}, deine Zahlung ist eingegangen – vielen Dank! Eine Bestätigung geht auch per E-Mail an {{ $order->customer_email }}.

@else

Hallo {{ $order->customer_full_name }}, deine Bestellung wartet jetzt auf den Zahlungseingang. Du erhältst alle Details auch per E-Mail an {{ $order->customer_email }}.

@endif @else

Deine Bestellung ist eingegangen. Alle Details – inklusive Bestellübersicht und ggf. Downloads – haben wir dir per E-Mail geschickt.

@endif @if ($downloadLinks->isNotEmpty())

Deine Downloads

@foreach ($downloadLinks as $link) {{ $link['name'] }} @endforeach

Die Links sind {{ config('shop.digital.download_ttl_hours', 72) }} Stunden gültig und wurden dir auch per E-Mail geschickt.

@endif @if ($owns)

Bestellübersicht

    @foreach ($order->items as $item)
  • {{ $item->product_name }} {{ $item->product_name }} × {{ $item->quantity }} {{ $item->line_total_formatted }}
  • @endforeach
  • Zwischensumme{{ $order->subtotal_formatted }}
  • Versand{{ $order->shipping_formatted }}
Gesamt {{ $order->total_formatted }}
@endif Weiter einkaufen
@if ($owns) @endif
@endsection