alphazento / ecommerce
A zento ecommerce framework base on Laravel
1.0
2020-04-26 23:29 UTC
Requires
- php: >=7.0
- alphazento/zento: >=1.0
This package is auto-updated.
Last update: 2025-03-21 01:13:08 UTC
README
Payment and Checkout process
1. request to PaymentGateway
by call api: /api/v1/payment/capture/{payment_method}
which will calls PaymentGateway::capturePayment
http request -> /api/v1/payment/capture/{payment_method} -> PaymentGateway::capturePayment
--> trig event "BeforeCapturePayment"
--> then the payment method run "capture"
--> if the payment gateway canDraftOrderAfterCapture then
--> CheckoutService::draftOrder -> trig event 'DraftOrder'
--> Zento\Sales\Event\Listener\DraftOrder will response the event, and draft a real order.