diff --git a/DEPLOY.md b/DEPLOY.md index 0d3381b..ce0c58f 100644 --- a/DEPLOY.md +++ b/DEPLOY.md @@ -2,7 +2,7 @@ Standalone app for **shop, menu & booking storefronts** at `merchant.ladill.com` — QR storefronts with catalog checkout. Sales settle into the one platform UserWallet -(9% fee), then withdraw via `account.ladill.com`. +(5.5% fee), then withdraw via `account.ladill.com`. Public scans stay at `ladill.com/q/` (blueprint decision — printed codes never migrate). The platform host forwards shop/menu/booking codes to this app (see @@ -23,7 +23,7 @@ main app DB user. |---|---| | `LADILL_SSO_CLIENT_ID` / `LADILL_SSO_CLIENT_SECRET` | `passport:client` on platform | | `BILLING_API_KEY_MERCHANT` | platform `.env` + this app | -| `PAY_API_KEY_MERCHANT` | platform `.env` + this app — Ladill Pay checkout (9% sales tier) | +| `PAY_API_KEY_MERCHANT` | platform `.env` + this app — Ladill Pay checkout (5.5% sales tier) | | `IDENTITY_API_KEY_MERCHANT` | platform `.env` + this app | | `PLATFORM_DB_*` | read `ladilldb.platform_settings` (Paystack keys from admin → Billing) | @@ -83,7 +83,7 @@ php artisan config:cache route:cache view:cache - SSO login at `merchant.ladill.com` - Create a shop, menu, or booking storefront, download QR PNG -- Scan `/q/`, place test order, confirm wallet credit (net of 9%) +- Scan `/q/`, place test order, confirm wallet credit (net of 5.5%) - Withdraw from `account.ladill.com/wallet` ## Product IA (blueprint) diff --git a/app/Models/QrSaleOrder.php b/app/Models/QrSaleOrder.php index 0af0929..c05bbd2 100644 --- a/app/Models/QrSaleOrder.php +++ b/app/Models/QrSaleOrder.php @@ -27,7 +27,7 @@ class QrSaleOrder extends Model self::FULFILLMENT_CANCELLED => 'Cancelled', ]; - public const PLATFORM_FEE_RATE = 0.09; + public const PLATFORM_FEE_RATE = 0.055; protected $fillable = [ 'pay_order_id', diff --git a/resources/views/merchant/payouts.blade.php b/resources/views/merchant/payouts.blade.php index b24ca38..31f415c 100644 --- a/resources/views/merchant/payouts.blade.php +++ b/resources/views/merchant/payouts.blade.php @@ -4,7 +4,7 @@

Payouts

-

Orders settle into your Ladill wallet (9% fee), then withdraw to bank or MoMo.

+

Orders settle into your Ladill wallet (5.5% fee), then withdraw to bank or MoMo.

diff --git a/resources/views/partials/afia.blade.php b/resources/views/partials/afia.blade.php index 5c8a3b8..530a73a 100644 --- a/resources/views/partials/afia.blade.php +++ b/resources/views/partials/afia.blade.php @@ -1,5 +1,5 @@ @php - $afiaGreeting = "Hi, I'm Afia 👋 Ask me about storefronts — creating one, accepting orders, payouts, or the 9% platform fee…"; + $afiaGreeting = "Hi, I'm Afia 👋 Ask me about storefronts — creating one, accepting orders, payouts, or the 5.5% platform fee…"; $afiaSuggestions = [ 'How do I create a storefront?', 'How do supporters give online?',