Dialog Genie IPG for Laravel is a PHP Laravel Package W
Use the package manager composer to install package.
composer require techcouchits/genieAdd Dialog Genie API Key and Callback URL it .env file
//ENV FILE
GENIE_API = YOUR_API_KEY
GENIE_REDIRECT_URL = YOUR_REDIRECT_URLUpdate Service Provider (config/app.php)
'providers' => ServiceProvider::defaultProviders()->merge([
\Techcouchits\Genie\GenieIpgServiceProvider::class
])->toArray(),Run Migration
php artisan migrateRedirect to below route with Payment amount and reference
//Controller
return redirect(amount,reference);Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.