🍕 Daftar Pesanan Pelanggan
@foreach($orders as $order) @endforeach
No Nama User Pizza Jumlah Total Harga Status Aksi
{{ $loop->iteration }} {{ $order->nama_pelanggan ?? $order->user->name ?? '-' }} {{ $order->pizza->nama_pizza ?? 'Tidak Diketahui' }} {{ $order->jumlah }} Rp {{ number_format($order->total_harga, 0, ',', '.') }} {{ ucfirst($order->status) }} {{-- Jika status belum selesai → boleh diubah --}} @if($order->status !== 'selesai')
@csrf
@else {{-- Jika selesai → ubah disable --}} ✔ Selesai @endif {{-- Tombol Hapus --}}
@csrf @method('DELETE')