Looking to hire Laravel developers? Try LaraJobs

laravel-atom maintained by azimrisaldar

Description
This pack is for integrating Atom payment gateway using Laravel 5 *
Author
Last update
2022/07/13 08:35 (dev-master)
License
Links
Downloads
31

Comments
comments powered by Disqus

Atom Payment Gateway Intergration Using Laravel 5 above version

This package will help you to Intergrate Atom Payment Gateway in Laravel framework

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Add the service provider to the config/app.php file in Laravel

Publish the config by running in your terminal

Edit the config/Atompay.php. Set the Mode of Tesing for True and False...

Initiate Purchase Request and Redirect using the default gateway:-

      /* All Required Parameters by your Gateway */
      
      $parameters = [
        'email'        => 'xyz@xyz.com',
        'phone'        => '**********',
        'Amount'        => '100',
      ];
        
        $return = Atompay::prepare($parameters);

        return redirect($return) ;