Accounting, invoicing, wallets, payments, and financial reporting for Fleetbase.
Ledger is the finance and billing extension for Fleetbase. It adds a complete financial management layer to the Fleetbase console, including double-entry bookkeeping, customer invoicing, invoice templates, digital wallets, payment gateway processing, immutable transaction history, and standard financial reports.
Ledger ships as both a Laravel package and an Ember engine. The backend package provides the accounting models, services, routes, gateway drivers, events, observers, migrations, and console commands. The frontend engine provides the Ledger console experience for billing, payments, accounting, reports, and settings.
Ledger is included with standard Fleetbase installations. See the Fleetbase Ledger documentation for the product guide, concepts, and setup walkthroughs.
- Features
- Architecture
- Requirements
- Installation
- Development
- API and Extension Points
- Documentation
- Contributing
- Security
- License
- Chart of accounts for asset, liability, equity, revenue, and expense accounts.
- Double-entry journal entries with debit and credit accounts.
- Cached account balances with recalculation support.
- General ledger views per account and across the company.
- System-created and manual journal entries for operational accounting workflows.
- Customer invoices with line items, tax, subtotal, total, balance, due date, notes, and terms.
- Invoice lifecycle support for draft, sent, viewed, paid, overdue, cancelled, refunded, and void states.
- Invoice templates with company branding and registered template context variables.
- Invoice previews, rendered PDFs, invoice emails, and public customer invoice pages.
- Manual payment recording and invoice transaction history.
- Fleet-Ops purchase-rate integration for automatically generating draft invoices from orders.
- Digital wallets for companies, users, customers, drivers, and other Fleetbase subjects.
- Wallet operations for top-ups, credits, transfers, payouts, freezes, unfreezes, and recalculation.
- Atomic balance changes through
WalletService. - Immutable transaction records for wallet activity, payment activity, and operational money movement.
- Direction-aware transaction history for credits, debits, deposits, payouts, transfers, refunds, and reversals.
- Built-in gateway drivers for Stripe, QPay, and Cash/manual payments.
- Gateway configuration with encrypted credentials at rest.
- Sandbox and live environments.
- Purchases, refunds, setup intents, tokenization where supported, and gateway transaction history.
- Public gateway webhook endpoint with driver-level signature verification.
- Idempotent gateway processing through
GatewayTransactionrecords.
- Financial dashboard with KPIs, revenue trends, cash flow summaries, invoice status, AR aging, wallet balances, and activity.
- Standard financial reports for balance sheet, income statement, cash flow statement, trial balance, AR aging, wallet summary, and general ledger.
- Report services built around double-entry accounting data and Fleetbase transaction records.
- Fleet-Ops integration for purchase-rate invoice creation and order accounting.
- Storefront integration for direct storefront sale journal entries.
- Company and user observers that provision default accounts and wallets automatically.
- Invoice, payment, and accounting settings inside the Fleetbase console.
Ledger is split into two distributable packages:
| Package | Runtime | Description |
|---|---|---|
fleetbase/ledger-api |
Laravel / PHP | Backend models, routes, services, migrations, gateway drivers, observers, events, resources, reports, and console commands. |
@fleetbase/ledger-engine |
Ember | Fleetbase console engine for the Ledger dashboard, billing, payments, accounting, reports, and settings screens. |
Backend routes are mounted under the configured Ledger API prefix, which defaults to ledger.
| Route group | Authentication | Purpose |
|---|---|---|
POST /ledger/webhooks/{driver} |
Public, driver verified | Payment gateway webhook callbacks. |
/ledger/public/invoices/{public_id} |
Public | Customer invoice view, gateway list, and payment flow. |
/ledger/v1/wallet/* |
API key | Customer and driver wallet API endpoints. |
/ledger/int/v1/* |
Fleetbase session | Console APIs for accounts, invoices, journals, wallets, transactions, gateways, settings, and reports. |
The Ember engine mounts at the Fleetbase extension route ledger and exposes console sections for billing, payments, accounting, reports, and settings.
- PHP
^8.0 - Composer
- Fleetbase Core API
- Fleetbase FleetOps API
- Node.js
>=18 - pnpm
- Ember CLI compatible with the workspace
Ledger comes pre-installed with Fleetbase. In a standard Fleetbase instance, open the console sidebar and navigate to Ledger to begin. Default accounts and wallets are provisioned automatically for new companies and users.
For package-level installation:
composer require fleetbase/ledger-apipnpm install @fleetbase/ledger-engineIf you are adding Ledger to an existing Fleetbase installation, run migrations through your normal Fleetbase deployment flow, then provision defaults for existing records:
php artisan ledger:provisionWhen working on Ledger inside a full Fleetbase checkout, use Fleetbase's package linker from the repository root instead of hand-editing console/package.json, api/composer.json, or console/pnpm-workspace.yaml.
Install the linker once from the Fleetbase repository root:
npm linkEnable Ledger as a local development package:
flb-package-linker enable ledger
flb-package-linker install ledgerUse --install to let the linker run the required package-manager commands immediately:
flb-package-linker enable ledger --installCheck link state with:
flb-package-linker status
flb-package-linker doctorSee the Fleetbase development setup guide for Docker mounts, local Ember dev server setup, package-linker details, and unlink/reset commands. Fleetbase runs Laravel Octane, so reload the API worker after PHP changes:
docker compose exec application php artisan octane:reloadInstall dependencies:
composer install
pnpm installRun the Ember engine locally:
pnpm startFrontend checks:
pnpm lint
pnpm test
pnpm buildBackend checks:
composer test:lint
composer test:types
composer test:unit
composer testLedger Artisan commands:
php artisan ledger:provision
php artisan ledger:backfill-direction
php artisan ledger:update-overdue-invoicesledger:provision is idempotent and can target all companies, one company, accounts only, or wallets only. ledger:backfill-direction fills missing transaction directions on older transaction rows. ledger:update-overdue-invoices marks sent or viewed invoices as overdue when their due date has passed.
Ledger exposes backend services for accounting, wallets, invoices, and payments:
LedgerServicecreates double-entry journal entries and powers financial reports.WalletServicemanages wallet provisioning and balance-changing operations.InvoiceServicecreates and manages invoices, including order-based invoice creation.PaymentServicecoordinates gateway charges, refunds, setup intents, events, and gateway transaction persistence.PaymentGatewayManagerresolves and initializes configured payment gateway drivers.
Custom payment gateways can extend AbstractGatewayDriver and implement the GatewayDriverInterface contract. Gateway drivers provide a code, name, capability list, configuration schema, purchase/refund behavior, and optional webhook or tokenization support.
Ledger also registers invoice template context variables with Fleetbase's template rendering system so invoice templates can reference invoice, transaction, account, and wallet data during rendering.
- Ledger documentation
- Core concepts
- Payment gateways
- Adding a payment gateway driver
- Fleetbase development setup
Contributions are welcome. Please read the contributing guide before opening a pull request.
For local changes, keep frontend and backend checks focused on the area you touched and include relevant test output in your pull request.
Please do not report security issues in public GitHub issues. Contact Fleetbase at hello@fleetbase.io with details so the team can coordinate a responsible fix.
Fleetbase Ledger is open-source software licensed under the AGPL-3.0-or-later.