@extends('layouts.layout-2') @section('content')
{{ $shipment->dhl_shipment_no }}
@else
Nicht verfügbar
@endif
{{ $shipment->dhl_shipment_no }}
| ID: | #{{ $shipment->id }} |
| DHL Sendungsnummer: |
@if($shipment->dhl_shipment_no)
{{ $shipment->dhl_shipment_no }}
@else
Nicht verfügbar
@endif
|
| Referenz: |
@if($shipment->reference)
{{ $shipment->reference }}
@else
Nicht gesetzt
@endif
|
| Routing-Code: |
@if($shipment->routing_code)
{{ $shipment->routing_code }}
@else
Nicht verfügbar
@endif
|
| Rechnungsnummer: |
@if($shipment->billing_number)
{{ $shipment->billing_number }}
@else
Nicht verfügbar
@endif
|
| Typ: |
@if($shipment->type == 'outbound')
{{ __('dhl.type.outbound') }}
@else
{{ __('dhl.type.return') }}
@if($shipment->relatedShipment)
Bezieht sich auf Sendung #{{ $shipment->relatedShipment->id }} @endif @endif |
| {{ __('dhl.fields.product_code') }}: | {{ $shipment->product_code }} - {{ $shipment->getProductCodeTranslation() }} |
| Label-Format: | {{ strtoupper($shipment->label_format) }} |
| Erstellt: | {{ $shipment->created_at->format('d.m.Y H:i:s') }} |
| Letzte Änderung: | {{ $shipment->updated_at->format('d.m.Y H:i:s') }} |
| Letztes Tracking: | {{ $shipment->last_tracked_at->format('d.m.Y H:i:s') }} |
| Abmessungen: | {{ $shipment->length }}×{{ $shipment->width }}×{{ $shipment->height }} cm |
| Name: | @if($shipment->firstname || $shipment->lastname) {{ $shipment->firstname }} {{ $shipment->lastname }} @elseif($shipment->recipient && isset($shipment->recipient['firstname'])) {{ $shipment->recipient['firstname'] }} {{ $shipment->recipient['lastname'] }} @else Nicht verfügbar @endif |
| Firma: | @if($shipment->company) {{ $shipment->company }} @elseif($shipment->recipient && isset($shipment->recipient['company'])) {{ $shipment->recipient['company'] }} @else - @endif |
| Postnummer: | {{ $shipment->recipient['postnumber'] }} |
| Straße: | @if($shipment->recipient && isset($shipment->recipient['street'])) {{ $shipment->recipient['street'] }} @if(isset($shipment->recipient['houseNumber'])) {{ $shipment->recipient['houseNumber'] }} @endif @else Nicht verfügbar @endif |
| PLZ: | @if($shipment->recipient && isset($shipment->recipient['postalCode'])) {{ $shipment->recipient['postalCode'] }} @else Nicht verfügbar @endif |
| Stadt: | @if($shipment->recipient && isset($shipment->recipient['city'])) {{ $shipment->recipient['city'] }} @else Nicht verfügbar @endif |
| Land: | @if($shipment->recipient && isset($shipment->recipient['country'])) {{ $shipment->recipient['country'] }} @else Nicht verfügbar @endif |
| E-Mail: | @if($shipment->recipient && isset($shipment->recipient['email'])) {{ $shipment->recipient['email'] }} @else Nicht verfügbar @endif |
| Telefon: | @if($shipment->recipient && isset($shipment->recipient['phone'])) {{ $shipment->recipient['phone'] }} @else Nicht verfügbar @endif |
| Bestellungs-ID: | #{{ $shipment->shoppingOrder->id }} |
| Kunde: |
@if($shipment->shoppingOrder->shopping_user)
{{ $shipment->shoppingOrder->shopping_user->billing_firstname }} {{ $shipment->shoppingOrder->shopping_user->billing_lastname }}
{{ $shipment->shoppingOrder->shopping_user->billing_email }} @else Unbekannt @endif |
| Bestelldatum: | {{ $shipment->shoppingOrder->created_at->format('d.m.Y H:i') }} |
| Bestellwert: | {{ number_format($shipment->shoppingOrder->total, 2, ',', '.') }} € |
| Status: | {{ $shipment->shoppingOrder->getShippedType() }} |
| Artikel: | {{ $shipment->shoppingOrder->shopping_order_items->count() ?? 0 }} Artikel |
| Zeitpunkt | Typ | Status | Empfänger | Sendungen |
|---|---|---|---|---|
| @if(!empty($entry['sent_at'])) {{ \Carbon\Carbon::parse($entry['sent_at'])->format('d.m.Y H:i') }} @else - @endif | {{ ($entry['type'] ?? '') === 'auto' ? 'Automatisch' : 'Manuell' }} |
{{ \Acme\Dhl\Models\DhlShipment::getStatusTranslationFor($entry['status'] ?? 'unknown') }}
@if(!empty($entry['tracking_status']))
{{ $entry['tracking_status'] }} @endif |
@if(!empty($entry['recipient_email'])) {{ $entry['recipient_email'] }} @else - @endif | @if(!empty($entry['included_shipment_ids'])) #{{ implode(', #', $entry['included_shipment_ids']) }} @else - @endif |
{{ json_encode($shipment->api_response_data, JSON_PRETTY_PRINT) }}