UberEats Clone · Features

UberEats Clone Features: What Happens After the Order

Any cart plugin can take an order. What separates a delivery marketplace from an ordering page is everything downstream of that: commission calculated and frozen onto a settlement row, store and rider balances moving, refunds carrying reasons and an approval trail, and a payout run that never pays twice. All of that is built, and every third-party account it needs is named against the feature.

Request a Live Demo →Full Overview
4 apps included
13 payment gateways
6 days to deploy
Commission
Frozen at settlement
What One Order Actually Writes
01A header and a row per line item
02A named timestamp per status
03Item price and discount snapshot
04Payment legs for split tender
05A settlement row with the rate
06The payout run it lands in
300
Database Tables
136
Eloquent Models
378
Migrations
764
Admin Routes
By Role

Feature Set by Role

Five surfaces over one Laravel monolith that owns every business rule.

01

The Customer

Search by dish, restaurant or cuisine with filters for rating, price and delivery time, seeing only the restaurants that actually deliver to them. Sizes, extras, allergens and nutrition on the dish page, then checkout for delivery, collection or a table, with scheduled times, tips, coupons and loyalty points behind it.

02

The Restaurant

An order board to accept and prepare, a menu editor with photos, sizes, extras and bulk upload, items marked sold out in one tap, opening hours and holiday schedules, staff logins beneath the owner, and earnings and payout history in one view rather than in an email from you.

03

The Counter

A built-in till inside the restaurant panel for walk-in and phone orders, so trade that never touched the app still lands in the same books. Dine-in and collection run through the same order pipeline with the rider steps simply skipped, which is why nothing happens outside your reporting.

04

The Delivery Partner

Accept or decline assigned orders, turn-by-turn navigation to pickup and drop-off, the delivery code that confirms handover, and a running view of earnings, incentives and the cash they are carrying. Cash collected is tracked against a ceiling you set per partner and per store.

05

The Operations Desk

Approve restaurants and delivery partners, draw delivery areas on a map and set their charges, step into any live order to reassign, progress, cancel with an authority record or edit it before preparation locks, and approve or reject refund requests with the trail that follows.

06

The Finance Desk

Scheduled disbursement for stores and delivery partners with the cadence, minimum amount, waiting period and week start all configurable, overlap locks so a slow run never pays twice, a full statement per restaurant, and sales, commission, payout and tax reports that export.

Staff accounts carry granular module permissions, so support sees orders, finance sees payouts and nobody sees more than they should. A separate vendor-employee layer scopes store staff below the owner.

Compare

Clone vs Generic Script vs Building From Scratch

Most routes to a delivery platform hold up until the first payout run.

What decides itMiracuves UberEats CloneGeneric delivery script
Time to a working platformSix working daysUnknown, and largely do it yourself
What a rate change does to old ordersNothing. The rate is frozen onto the settlement rowRewrites last quarter's numbers silently
Opening a second cityDraw a zone, set its charges. An afternoonA second deployment to maintain and upgrade
Walk-in and phone tradeA built-in till, landing in the same booksOutside the platform, and outside the reports
Changing commission or delivery feesOne of roughly 120 settings keysA developer and a deployment
Paying restaurants and ridersScheduled runs with overlap locksA spreadsheet, and a bank transfer by hand
Split paymentRecorded as separate payment legsOne total, and no way to reconcile it
Source codeYours outright, no per-order royaltyOften limited, sometimes encrypted

UberEats itself is the reference for what this category looks like; it is not a product you can buy or self-host. The commercially useful comparison is the second column against the third, and against a custom build, which is covered on the Development Cost page.

End to End

How It Works, End to End

Six stages, each a named surface in the code rather than a diagram drawn afterwards.

Step 1

They enter an address

Coverage resolves from zone polygons rather than a scan, so the customer sees only restaurants that actually serve them. Which stores appear, which riders can be assigned and which staff can act on the order all follow from the zone it belongs to.

Step 2

They build an order

Items carry variation option stock, add-on groups, attributes, allergens, tags and daily stock counters. Sizes, crusts, toppings and extras sit on the dish, and a restaurant marks something sold out in one tap without calling you to do it.

Step 3

They pay however they want

Thirteen gateways ship alongside the customer wallet, cash on delivery with a ceiling you set, and operator-defined offline methods with a proof-and-approval workflow. Part wallet and part card is supported, and split tender is recorded as separate payment legs rather than one blended total.

Step 4

The restaurant works it

The order lands on the board, is accepted and prepared, and every status transition writes its own named timestamp. Alongside it the built-in till takes walk-in and phone orders into the same pipeline, so counter trade is not invisible to your reports.

Step 5

A partner carries it

Delivery partners are filtered by zone before assignment, follow turn-by-turn navigation, and close the job with a one-time delivery code the customer reads out. With verification enabled a delivered status carries evidence rather than being a tap somebody made in the street.

Step 6

The money settles

Commission percentage and discount split are frozen onto the transaction row, and item revenue reads the order line rather than the current menu price. Scheduled disbursement pays stores and riders on your cadence with overlap locks, leaving a transaction history behind every run.

Step 7

The loop closes

What a customer paid becomes what the restaurant is owed becomes what you pay out, all from the same record of the order. Sales, commission, payout and tax reports each show what was actually charged at the time, so changing a rate later never rewrites your old numbers.

Loyalty points, wallet credit, cashback and referral rewards run alongside the whole loop, at rates you set rather than rates we chose.

Justified

Every Feature Earns Its Place

Each row is here because a delivery marketplace stops working without it, not because a competitor lists it.

ModuleWhy it is in the base build
Commission frozen at settlementIf the rate is read live, changing it rewrites history. Freezing it onto the transaction row is what makes last quarter's numbers still true next quarter.
Zones as the operating unitCoverage, dispatch, staff access, marketing and notifications all hang off the delivery area. It is the closest thing to a tenant boundary in the data model, and it is why a second city is a setting.
Overlap locks on payout runsDisbursement is the one job where a retry costs real money. A lock is the difference between a slow run and paying every restaurant twice.
The built-in tillWalk-in and phone trade is real revenue. Left outside the platform it is invisible to commission, to reporting and to the restaurant's own payout statement.
Split tender as payment legsPart wallet and part card is one order and two movements of money. Recorded as a single total it cannot be reconciled against either rail.
Cash ceilings per partnerA rider carrying too much float is an operational risk you cannot see until it goes wrong. The ceiling stops assigning cash orders before it does.
The business-model guardCommission and subscription are stored as a setting with a guard that refuses to disable both at once, so store economics can never become undefined by a stray click.
Surface-isolated credentialsCustomer tokens cannot reach store routes, and store and delivery tokens resolve through their own middleware, so five surfaces never share a trust boundary.

Alongside these sit three Laravel modules most platforms charge separately for: an AI ordering assistant, a short-video food feed, and full tax handling with per-order computation and exports.

Stack

The Technology Behind the Features

Conventional and easy to hire for, chosen so the operating knowledge is common rather than exotic.

Application coreLaravel 12 on PHP 8.2 and above with MySQL and Passport: roughly 300 tables under 378 migrations in strict date order, 136 Eloquent models across eleven business domains, and 62 admin, 55 API and 29 vendor-web controllers, with central pricing and delivery-fee helpers held in one seam.
Surfaces and routing326 route definitions on API v1 with v2 reserved for update endpoints, 764 admin console routes behind role and module gates, 258 store web panel routes under plan entitlements, and 33 server-rendered storefront pages, with separate middleware per surface so tokens never cross.
Client applicationsThree Flutter builds on GetX rather than one app wearing three hats: the customer app across 727 Dart files in 36 feature modules, the store app across 503 files in 29, and the delivery app across 234 files in 17. The storefront is Next.js 15 and React 18 on MUI and Redux Toolkit with i18n and right-to-left support.
Money and settlementThirteen gateways plus wallet, cash and offline rails, commission and discount split frozen at settlement, split tender recorded as separate payment legs, live and test credential sets per gateway switched by mode, scheduled disbursement with overlap locks, and a tax module with per-order computation and exports.
Realtime and messagingFirebase Cloud Messaging on HTTP v1 with per-project service-account authentication rather than a legacy server key, zone-scoped topics so a send reaches one city, a Pusher-compatible websocket server with Laravel Echo, and in-order chat between customer, store and delivery partner.
Configuration and storageRoughly 120 named settings keys across business, customer, delivery-partner, order, store, disbursement, payment, mail, theme, policy and third-party tabs, read at decision points rather than compiled in. Local disk or S3-compatible storage switched at runtime, and theme, logo and invoice layout as settings rows.

A single Laravel monolith owns every business rule and the five surfaces are presentation layers over one versioned API. One deploy, one schema, one set of rules, which is what keeps four clients from drifting apart.

Honest Readiness

What Is Not Included in the Base Package

A fixed price only means something if the boundary around it is stated, so this is that boundary.

01

The documentation names its own gaps

Cross-origin resource sharing ships with wildcard origins on the API and needs narrowing to your domains. Content-Security-Policy and related browser hardening headers are not emitted by the application and belong at the web server or middleware layer. Session cookies ship with the same-site attribute unset.

02

No two-step login for admin staff

Operator accounts sign in with a password. On a console that can move payouts, reassign orders and change commission rates, adding a second factor is worth scheduling early, and it is scoped work rather than a switch in the settings surface.

03

Search is database-backed

Discovery runs on index-hinted scopes with eager-loading discipline rather than an external search engine. That is the right trade until your catalogue is very large, and a dedicated engine is documented as the extension point rather than pretended away.

04

Riders are yours, or a courier integration

The delivery partner app assumes you run your own riders. Connecting an outside courier company, if you do not, is an integration scoped separately. So is publishing to the Apple App Store on your behalf, which depends on your developer identity rather than ours.

05

Thirteen gateways, and no fourteenth

Stripe, PayPal, Razorpay, Paystack, Flutterwave, Paytm, PayTabs, MercadoPago, Paymob, SenangPay, SSLCommerz, LiqPay and bKash ship in the codebase. Any gateway beyond those thirteen is integration work, as are custom data feeds into your own reporting tools.

06

What is built is real

Roughly 300 tables under 378 migrations, 136 models, three separate Flutter builds, a server-rendered storefront, 764 admin routes behind role gates, commission snapshotting, scheduled disbursement with overlap locks, per-order tax computation, and surface-isolated credentials with constant-time comparison on machine-to-machine keys.

Also outside the build: a storefront design tailored to a specific vertical, and any regulatory certification for a controlled category. Those are honest limits, and we will tell you plainly where your market needs work beyond configuration.

Development Company

See how Miracuves compares to agencies and freelancers

The deployment process, the Flyereats engagement we delivered in 2025, the pre-launch hardening list, and the nine questions worth asking before you hire anyone - on the Development Company page.

See the comparison →
FAQ

Frequently Asked Questions

What do the three mobile apps actually do?
They are three separate apps, not one app wearing three hats. Customers get ordering, saved addresses, live tracking, chat, wallet, loyalty, referrals and a membership programme. Restaurants get incoming orders, menu management with photos and stock, a built-in till for walk-in and phone orders, staff logins, expenses and their payout history. Delivery partners get assigned jobs, navigation to pickup and drop-off, the delivery code, their daily earnings and the cash they are carrying.
How many payment gateways are included?
Thirteen gateway integrations ship in the codebase: Stripe, PayPal, Razorpay, Paystack, Flutterwave, Paytm, PayTabs, MercadoPago, Paymob, SenangPay, SSLCommerz, LiqPay and bKash. Alongside them sit the customer wallet, cash on delivery, and operator-defined offline payment methods with a proof-and-approval workflow. The checkout never hardcodes the list: clients read the active methods from configuration, so which gateways appear is deployment state rather than a code change.
Does a delivery leave any proof?
Yes, and it is an operator toggle rather than fixed behavior. With delivery verification enabled, a one-time code sits between arrival and completion, so a delivered status carries evidence rather than being a tap the partner made in the street. Alongside it, cash collected is tracked against a configured ceiling per delivery partner and per store, so a partner carrying too much float stops being assigned cash orders until they settle.
How does the platform handle more than one city?
Through zones, and this is the design decision that most affects how fast you can expand. A zone carries its own coverage polygon, its own delivery pricing, its own cash-on-delivery ceiling and its own notification topics. Which restaurants a customer sees, which riders get assigned, and which staff can act on an order all follow from the area it belongs to. Opening a second city means drawing another area and setting its charges.
Is it only for restaurant food?
The core vertical is food and the catalog model was shaped around it, but nothing in the order pipeline is food-exclusive. Items carry variation option stock, add-on groups, attributes, allergens, tags and daily stock counters, and groceries, pharmacy and general retail use exactly that machinery. Vertical differences surface as configuration: unit handling through attributes, and prescription-style instructions through the order note and delivery instruction fields.
How are stores and delivery partners paid?
Through scheduled disbursement commands, with the cadence, minimum amount, waiting period and week start all configurable from the console rather than set in a crontab. The runs carry overlap locks so a slow execution never pays twice, and every run leaves a transaction history behind it. The detail that makes the numbers trustworthy is that every order records what was actually charged at the time, rather than working it out again later from current rates.

Place a real order, then follow the money

Order on the website, accept it as the restaurant, watch it move through delivery, then open the same order in the admin dashboard and see your commission calculated against it.

Four apps. One set of books.

Customer, restaurant and delivery partner apps plus your admin console, over one Laravel monolith and one schema, with the source yours outright and no cut of what the platform earns.

Talk to Us →
Miracuves · UberEats Clone Solution Feature set, stack and stated limitations cross-verified against the hub, 2026-09-10
Disclaimer

Miracuves is an independent software development company. We are not affiliated with, connected to, sponsored by, or endorsed by UberEats.

Why this name

UberEats Clone” is used descriptively. It is how the software industry refers to building a platform with functionality similar to UberEats, and how clients search for it.

Who built this

The entire design and codebase is built by our own team. The product contains no code, design, graphics, or content originating from the UberEats website or applications.

Trademarks

UberEats and all other third-party names and marks are the property of their respective owners, referenced here solely to describe the category of software offered.