| 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') @else {{-- Jika selesai → ubah disable --}} ✔ Selesai @endif {{-- Tombol Hapus --}} |