$<%= stats.totalRevenue || '0.00' %>
Total Revenue
<%= stats.totalOrders || 0 %>
Total Orders
<%= stats.totalUsers || 0 %>
Total Customers
<%= stats.totalFoods || 0 %>
Food Items
| Order ID |
Customer |
Amount |
Status |
Date |
Actions |
<% if (recentOrders && recentOrders.length > 0) { %>
<% recentOrders.forEach(order => { %>
| #<%= order.orderId %> |
<%= order.customerInfo.name || 'N/A' %> |
$<%= order.totalAmount.toFixed(2) %> |
<%= order.status.charAt(0).toUpperCase() + order.status.slice(1) %>
|
<%= new Date(order.createdAt).toLocaleDateString() %> |
|
<% }) %>
<% } else { %>
| No orders found |
<% } %>
Database
Online
File Uploads
Enabled
Email Service
Disabled
Last Backup
<%= new Date().toLocaleDateString() %>