@extends('admin.shop.layout')
@section('admin_content')
Kundendaten
-
Name
{{ $order->customer_full_name }}
-
E-Mail
{{ $order->customer_email }}
-
Telefon
{{ $order->customer_phone ?: 'nicht angegeben' }}
-
Zahlungsart
{{ $paymentMethods[$order->payment_method]['label'] ?? $order->payment_method }}
-
Versand
{{ $order->shipping_method === 'pickup' ? 'Selbstabholung' : $order->street . ', ' . $order->postal_code . ' ' . $order->city }}
@if ($order->notes)
Kundenhinweis
{{ $order->notes }}
@endif
| Produkt |
Menge |
Einzelpreis |
Gesamt |
@foreach ($order->items as $item)
{{ $item->product_name }}
{{ $item->product_slug }}
|
{{ $item->quantity }} |
{{ $item->unit_price_formatted }} |
{{ $item->line_total_formatted }} |
@endforeach
Bestellwert
{{ $order->total_formatted }}
@endsection