This pack is for integrating Atom payment gateway using Laravel 5 *
azimrisaldar/laravel-atom is a Laravel package for this pack is for integrating atom payment gateway using laravel 5 *.
It currently has 1 GitHub stars and 31 downloads on Packagist (latest version v1.0).
Install it with composer require azimrisaldar/laravel-atom.
Discover more Laravel packages by azimrisaldar
or browse all Laravel packages to compare alternatives.
Last updated
This package will help you to Intergrate Atom Payment Gateway in Laravel framework
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.
composer require azimrisaldar/laravel-atom
Add the service provider to the config/app.php file in Laravel
'PaymentGateway\Atom\AtomServiceProvider::class',
Publish the config by running in your terminal
php artisan vendor:publish
Edit the config/Atompay.php. Set the Mode of Tesing for True and False...
use PaymentGateway\Atom\Facades\Atompay;
Initiate Purchase Request and Redirect using the default gateway:-
/* All Required Parameters by your Gateway */
$parameters = [
'email' => '[email protected]',
'phone' => '**********',
'Amount' => '100',
];
$return = Atompay::prepare($parameters);
return redirect($return) ;
public function response(Request $request)
{
$response = Atompay::response($request);
dd($response);
}