mhmdomer / ecommerce-laravel

An e-commerce Laravel application from start to finish (excluding payments and shipping) with clean and simple UI
http://vampireecommerce.herokuapp.com
MIT License
294 stars 111 forks source link

Not an issue but a few questions #30

Closed greenreader9 closed 2 years ago

greenreader9 commented 2 years ago
  1. How is payment processed? (Stripe, PayPal, etc.) On the checkout page, I don't see all the details that would be needed for credit card billing.
  2. Can an option be made on the checkout page to create a new account so the order is saved for the customer?

Thanks!

Abdullah-Pele commented 2 years ago

how can I add payment methods to my website ??

mhmdomer commented 2 years ago

Hey @greenreader9

  1. The provided payment processor here is stripe, the code is commented out so that it won't send an actual or fake payment to stripe when users are testing the app. Feel free to add your own payment method
  2. When you put items on the cart, it is saved on the session, so if you created an account after placing items on the cart it should be persisted and saved on your newly created account.