@extends('layouts.layout-2') @section('content')

DHL Sendung erstellen

Zurück zum Cockpit
Bestellinformationen
Bestellungs-ID: #{{ $order->id }}
Kunde: {{ $order->shopping_user->billing_firstname ?? '' }} {{ $order->shopping_user->billing_lastname ?? '' }}
{{ $order->shopping_user->billing_email ?? '' }}
Bestelldatum: {{ $order->created_at->format('d.m.Y H:i') }}
Bestellwert: {{ number_format($order->total, 2) }} €
Lieferadresse: {{ $order->shopping_user->shipping_firstname ?? $order->shopping_user->billing_firstname }} {{ $order->shopping_user->shipping_lastname ?? $order->shopping_user->billing_lastname }}
{{ $order->shopping_user->shipping_address ?? $order->shopping_user->billing_address }} {{ $order->shopping_user->shipping_address_2 ?? $order->shopping_user->billing_address_2 }}
{{ $order->shopping_user->shipping_zipcode ?? $order->shopping_user->billing_zipcode }} {{ $order->shopping_user->shipping_city ?? $order->shopping_user->billing_city }}
{{ $order->shippingCountry->name ?? 'Deutschland' }}
Status: {{ $order->status }}
Artikel: {{ $order->shopping_order_items->count() }} Artikel
Artikel in der Bestellung
@php $totalWeight = 0; @endphp @foreach($order->shopping_order_items as $item) @php $itemWeight = ($item->product->weight ?? 0) * $item->qty; $totalWeight += $itemWeight; @endphp @endforeach
Artikel Menge Einzelpreis Gesamtpreis Gewicht (kg)
{{ $item->product->name ?? 'Unbekanntes Produkt' }} @if($item->product->number)
Art.-Nr: {{ $item->product->number }} @endif
{{ $item->qty }} {{ number_format($item->price, 2) }} € {{ number_format($item->price * $item->qty, 2) }} € {{ number_format($itemWeight, 3) }}
Geschätztes Gesamtgewicht: {{ number_format($totalWeight, 3) }} kg
Sendung konfigurieren
@csrf
Mindestens 0.1 kg, maximal 31.5 kg (DHL Paket Limit)
Standardmäßig DHL Paket für nationale Sendungen
Hohe Priorität für dringende Sendungen
Startet automatische Sendungsverfolgung nach Erstellung
Versandhinweise
  • Die Sendung wird asynchron erstellt
  • Sie erhalten eine Benachrichtigung nach Fertigstellung
  • Das Versandlabel wird automatisch generiert
  • Bei aktiviertem Auto-Tracking wird die Sendung überwacht
  • @if($totalWeight > 10)
  • Hohes Gewicht - prüfen Sie die Verpackung
  • @endif

* Pflichtfelder | Geschätzte Verarbeitungszeit: 2-5 Minuten
@endsection @section('scripts') @endsection