Deploy Ladill Merchant / deploy (push) Successful in 45s
When a menu (food) storefront order is paid, best-effort POST it to the merchant's Ladill POS kitchen ingest (config/kitchen.php → KITCHEN_API_URL/KEY) so it lands on their Kitchen Display alongside dine-in tabs. Failures are logged, never surfaced — order completion is unaffected; POS ignores orders for accounts that don't run a POS kitchen. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
278 B
PHP
9 lines
278 B
PHP
<?php
|
|
|
|
return [
|
|
// Ladill POS kitchen ingest — paid food-storefront orders are pushed here so
|
|
// they appear on the merchant's POS Kitchen Display. Empty = disabled.
|
|
'url' => rtrim((string) env('KITCHEN_API_URL', ''), '/'),
|
|
'key' => env('KITCHEN_API_KEY'),
|
|
];
|