payment integration without using Cashier(Stripe) subscription?
I have a online courier system when user can make and order a delivery parcel to a recipient. As far as it goes, user once the order is finalized, the user can pay with credit(like e-wallet) and it will process the order. And I keep the order and details in Orders table. Now I've want to add an alternative payment using credit card/debit card instead of paying with credit.
From what it looks like, many recommended using laravel cashier (stripe). Thing is it is based on subscription services and I do not need it since my flow only involves making a payment and saving the order details to the table.
Would it be do-able or is there other alternative payment processor that I can use?
So laravel stripe will not be suitable for my case? I do not want to store any CC information, just want the user to make a one time payment and process their order.
Stripe has one time payments. I suggest going over their documentation to see what all they offer.
But there are other payment gateways as well.
If you are going to accept credit cards, you will have to pay for a payment gateway service. Otherwise, you will need to consult with a Lawyer to assist you in getting PCI compliant.
But believe me it's easier to pay the Gateway fees and let them worry about the laws involved and the compliance.
But why not watch the @jeffreyway video and learn a little more about this stuff first.
the payment provider will give you back the last four digits so that you can store them in case you need to remind the user how they paid
Integrating with Stripe or paypal is very easy for one time payments, however I would never recommend anyone use paypal because they have incredibly arcane account setup processes and their support is the worst in the industry
@snapey been a while, but I used paypal in the past. Maybe things have changed, but I had some excellent tech support help. I guess somehow all worked good for me. Just saying Paypal is big and well known.