softon / indipay by softon

The Laravel 5 Package for Indian Payment Gateways. Currently supported gateways: CCAvenue, PayUMoney, EBS, CitrusPay, InstaMojo, ZapakPay, Mocker
83,605
63
5
Package Data
Maintainer Username: softon
Maintainer Contact: powerupneo@gmail.com (Shiburaj)
Package Create Date: 2015-08-07
Package Last Update: 2024-02-20
Home Page: http://softon.github.io/indipay
Language: PHP
License: MIT
Last Refreshed: 2024-04-27 03:11:46
Package Statistics
Total Downloads: 83,605
Monthly Downloads: 431
Daily Downloads: 7
Total Stars: 63
Total Watchers: 5
Total Forks: 83
Total Open Issues: 13

IndiPay

The Laravel 5 Package for Indian Payment Gateways. Currently supported gateway: CCAvenue, PayUMoney, EBS, CitrusPay ,ZapakPay (Mobikwik), Mocker

For Laravel 4.2 Package Click Here

Step 2: Add the service provider to the config/app.php file in Laravel (Optional for Laravel 5.5)

Step 3: Add an alias for the Facade to the config/app.php file in Laravel (Optional for Laravel 5.5)

Step 4: Publish the config & Middleware by running in your terminal

Step 5: Modify the app\Http\Kernel.php to use the new Middleware. This is required so as to avoid CSRF verification on the Response Url from the payment gateways. You may adjust the routes in the config file config/indipay.php to disable CSRF on your gateways response routes.

to

Edit the config/indipay.php. Set the appropriate Gateway and its parameters. Then in your code...

Initiate Purchase Request and Redirect using the default gateway:-

      /* All Required Parameters by your Gateway */
      
      $parameters = [
      
        'tid' => '1233221223322',
        
        'order_id' => '1232212',
        
        'amount' => '1200.00',
        
      ];
      
      $order = Indipay::prepare($parameters);
      return Indipay::process($order);

Initiate Purchase Request and Redirect using any of the configured gateway:-

      /* All Required Parameters by your Gateway */
      
      $parameters = [
      
        'tid' => '1233221223322',
        
        'order_id' => '1232212',
        
        'amount' => '1200.00',
        
      ];
      
      // gateway = CCAvenue / PayUMoney / EBS / Citrus / InstaMojo / ZapakPay / Mocker
      
      $order = Indipay::gateway('NameOfGateway')->prepare($parameters);
      return Indipay::process($order);

Get the Response from the Gateway (Add the Code to the Redirect Url Set in the config file. Also add the response route to the remove_csrf_check config item to remove CSRF check on these routes.):-