Frame POS checkout sheet for till operators.
Deploy Ladill POS / deploy (push) Successful in 1m16s

Use operator-facing copy and merchant email so Card/MoMo checkout is for staff handing the screen to a customer, not self-serve buyers.
This commit is contained in:
isaacclad
2026-07-15 13:23:29 +00:00
parent 69ec45eea6
commit 7c20cf705a
6 changed files with 64 additions and 25 deletions
@@ -186,7 +186,7 @@ class RegisterController extends Controller
return redirect()
->route('pos.sales.show', $sale)
->with('checkout_url', $result['checkout_url'])
->with('success', 'Complete the payment to finish this sale.');
->with('success', 'Payment sheet ready — hand the device to the customer for card or MoMo.');
} catch (RuntimeException $e) {
return back()->withInput()->with('error', $e->getMessage());
}
@@ -237,7 +237,7 @@ class TicketController extends Controller
return redirect()
->route('pos.tickets.show', $sale)
->with('checkout_url', $result['checkout_url'])
->with('success', 'Complete the payment to settle this ticket.');
->with('success', 'Payment sheet ready — hand the device to the customer for card or MoMo.');
} catch (RuntimeException $e) {
return back()->with('error', $e->getMessage());
}