Current
Scheduled
History
Incomplete
| Order ID | Customer | Pickup | Delivery | Driver | Status | Time | Actions |
|---|
Avg Delivery Time
—
minutes per order
On-Time Rate
—%
of all deliveries
Total Revenue
₱0
this month
Customer Rating
—
avg feedback score
Orders Per Day (Last 7 Days)
Delivery Status Breakdown
Driver Performance
Hourly Order Volume
Business Profile
Notification Settings
Firebase Security Rules (Reference)
{
"rules": {
"orders": {
".read": "auth != null",
".write": "auth != null && (root.child('users').child(auth.uid).child('role').val() === 'admin' || root.child('users').child(auth.uid).child('role').val() === 'dispatcher')"
},
"drivers": {
".read": "auth != null",
"$driverId": {
".write": "auth != null && (auth.uid === $driverId || root.child('users').child(auth.uid).child('role').val() === 'admin')"
}
},
"users": {
"$uid": {
".read": "auth.uid === $uid",
".write": "auth.uid === $uid"
}
}
}
}