📂 FileMgr
📍
/home/u625410797/domains/monothailand.com/public_html/views/admin/orders
✏️ Edit File: /home/u625410797/domains/monothailand.com/public_html/views/admin/orders/detail.php
⬅ Kembali
<div class="max-w-6xl mx-auto"> <div class="flex items-center justify-between mb-6"> <h1 class="text-2xl font-bold text-gray-800">Order Details</h1> <a href="BASE_URL . 'admin/orders" class="text-gray-600 hover:text-gray-900">← Back to Orders</a> </div> <div class="bg-white rounded-lg shadow p-6 mb-6"> <div class="grid grid-cols-2 md:grid-cols-4 gap-4"> <div> <p class="text-sm text-gray-500">Order Number</p> <p class="font-bold">#<?= e($order['order_number']) ?></p> </div> <div> <p class="text-sm text-gray-500">Customer</p> <p class="font-bold"><?= e($order['customer_name']) ?></p> </div> <div> <p class="text-sm text-gray-500">Total</p> <p class="font-bold"><?= format_price($order['total']) ?></p> </div> <div> <p class="text-sm text-gray-500">Status</p> <p class="font-bold"><?= e(ucfirst($order['status'])) ?></p> </div> </div> </div> <div class="bg-white rounded-lg shadow p-6"> <h2 class="text-lg font-bold mb-4">Order Items</h2> <table class="w-full"> <thead> <tr class="border-b"> <th class="text-left py-2">Product</th> <th class="text-left py-2">Quantity</th> <th class="text-left py-2">Price</th> <th class="text-left py-2">Subtotal</th> </tr> </thead> <tbody> <?php foreach ($order['items'] ?? [] as $item): ?> <tr class="border-b"> <td class="py-3"><?= e($item['name']) ?></td> <td class="py-3"><?= $item['quantity'] ?></td> <td class="py-3"><?= format_price($item['price']) ?></td> <td class="py-3"><?= format_price($item['subtotal']) ?></td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div>
💾 Simpan File
Batal
⬅ Naik ke admin
1 item
Nama
Tipe
Ukuran
Diubah
Aksi
🐘
detail.php
php
2.1 KB
2026-05-31 16:45
✏️ Edit
👁️ View
🗑 Hapus