laravel billing stripe alternative - php

I am using laravel for a website. I need all the features provided by laravel cashier but I cannot use Stripe as it is not supported in India.
Is there an alternative that can be used directly with laravel cashier package? Is there a way I can use Stripe although it's not supported in India?

unfortunately Laravel 5 cachier is built on stripe Api in almost all functions like subscription and plans and recurring billing and discounts
so you cannot use it with another payment gateway without heavy customizations

Use PayUMoney or Paytm which are Indian Payment Gateway.

Related

Magento 2 Braintree Card Payment integrate with react native app

I try to use Braintree Card Payment extension from Magento 2, but I can't find a solution. If I use card payment from magento web theme, it works fine, but if I make endpoint requests from Postman I receive the following error message:
Transaction has been declined. Please try again later.
I use magento 2 endpoinds:
/rest/V1/carts/mine/shipping-information and /rest/V1/carts/mine/payment-information
I read that if you want to integrate braintree card payment for native mobile app (frontend), you need to create a custom module programatically on backend.
Someone else has done this and can help me with an implementation or some steps to follow?

Payment Methods on Website

I am using braintree in our apps to accept payments from credit/debit cards and paypal.
But I also want to use braintree on my website. I am using php Laravel framework 5.2 .
How can I enable my website to accept payments from braintree paypal and credit/debit cards?
Thanks in advance.
Laravel offers the Cashier package for integration with Stripe and Braintree.
https://laravel.com/docs/5.5/billing

Payment Gateway Integration With Custom Screen and API

I want to integrate Braintree into my project. But I have following issues:-
I want recurring payment in sdks, which is not possible as per Braintree documentations. For this my company wants me to develop a custom screen which will take card details and that I need to send on server and my server will make payment also create recurring profile in Braintree as Braintree provides recurring in web.
So, If I do so, what it will be a risk of app to get rejected in apple review because of custom payment screen ?
According to Braintree's developer documentation:
If the Drop-in UI doesn't fit your needs, develop your own custom
integration using our client SDKs to accept credit cards,
PayPal, and other available payment method types. This allows you
full control over the checkout process. Using our native mobile SDKs,
you can typically qualify for the SAQ A PCI compliance form with a
custom integration

Payu payment gateway integration with PHP

PayU provide lot of API. I don't know which API is used. I want to integrate with lots of option like,
Credit card option
Debit card option
Web checkout option
Most Recommended way is use Direct Payment Gateway Provider's API rather than others.
IF your are using PayU biz :
Step 1: You can use simple HTML form enter into payu payment gateway
Step 2: You can use official payu SDK PayU SDK
If you are using PayU Money :
You can download PHP API from merchant login page.
In general payment gateway provider will provide Credit/Debit and netbanking options.
To
integrate Payumoney in woocommerce "PayU" provides a simple plugin to
integrate. Install it, enter your credential and that’s all.. Done..
If you want to integrate it in wordpress non e-commerce site, it needs customization. Install PHP kit provided by payumoney through FTP file upload or web hosting control panel.
The
most important you have to pass the values of all required parameter as
mentioned in their documentation. Pass these values with $_POST. That’s
it.
I have done the same thing in Hotel Booking system. Its working fine.If you need any further help, contact me on aryamaae.com

Laravel 4.2 with Stripe recurring payment

I'm using laravel 4.2.
I want to use Stripe payment gateway for recurring Pro-rated payments. I've subscribed with Stripe.
The API in Stripe seems in PHP. I want to use it with laravel 4.2 hence is there any ready made package I can use for?
As I am using recurring pro-rated payments, it is necessary to me the package should support all the methods of recurring payments on stripe.
Can anyone suggest me the best one?
I've searched on Packagist but the packages have not proper documented for recurring payments.
Use Laravel Catalyst here is the link https://cartalyst.com/manual/stripe-laravel/1.0
It help for recurring payments.

Categories