@extends('admin.panel.layout') @section('admin_title', 'Bestellungen') @section('admin_content')
Bestellungen

Bestellverwaltung

Alle Gast-Bestellungen mit Status, Betrag und Kundendaten.

Alle @foreach ($orderStatusLabels as $statusKey => $statusLabel) {{ $statusLabel }} @endforeach
@forelse ($orders as $order) @empty @endforelse
Bestellung Kunde Positionen Gesamt Status
{{ $order->order_number }}
{{ $order->created_at->format('d.m.Y H:i') }}
{{ $order->customer_full_name }}
{{ $order->customer_email }}
{{ $order->items_count }} {{ $order->total_formatted }} {{ $orderStatusLabels[$order->status] ?? $order->status }} {{ $paymentStatusLabels[$order->payment_status] ?? $order->payment_status }} Öffnen
Noch keine Bestellungen vorhanden.
@if (method_exists($orders, 'links'))
{{ $orders->links() }}
@endif
@endsection