🍕 Daftar Pesanan Pelanggan
@foreach($orders as $order) @endforeach
No Nama User Pizza Jumlah Total Harga Status Aksi
{{ $loop->iteration }} {{ $order->user->name ?? '-' }} {{ $order->pizza->nama_pizza ?? 'Tidak Diketahui' }} {{ $order->jumlah }} Rp {{ number_format($order->total_harga, 0, ',', '.') }} {{ ucfirst($order->status) }}
@csrf