Manifest - Laravel and Inertia Commerce Admin Template
newA Laravel and Inertia commerce admin on a real Eloquent backend: orders, catalog, customers, inventory, promotions and analytics.
What is included
- TanStack Table v9 grids. Orders, catalog and inventory grids run v9 over real Eloquent rows, not fixtures.
- Real Eloquent tables. Thirty-one models and thirteen migrations back the app, so a product survives a restart.
- Receiving moves stock. Receiving a draft purchase order increments each StockLevel and appends a StockMovement in one transaction.
- Deletes the server refuses. An order carrying revenue will not delete, nor a customer with orders.
- Fortify auth, sign-up closed. Login, reset, verification, two-factor and passkeys run through Fortify; public registration answers 404 until ALLOW_REGISTRATION opens it.
- One setup command. composer setup installs dependencies, migrates, seeds and builds against SQLite.
- Typed route helpers. Wayfinder regenerates helpers from routes/web.php on every build, so rows link with productsRoutes.show(id).
- Thirty Pest test files. A browser suite opens every signed-in GET route in Chromium and fails on a console error.
Who it is for
- Laravel teams who want the backend written Controllers, form requests and API resources are in place, so pages arrive wired to Eloquent.
- Agencies shipping a store admin per client Swap the JSON in database/seeders/data for a client catalog; the controllers carry over.
- Teams leaving a hosted store admin Orders and stock land in a SQLite or Postgres database you own.