Download the PHP package turown/laravel-paytr without Composer
On this page you can find all versions of the php package turown/laravel-paytr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-paytr
Licence
Description
PayTR integration for Laravel.
This package is under development, first version only supports iFame payment screen.
Thanks in advance for your contribution.
Installation
composer require turown/laravel-paytr
Publish configuration and assets
php artisan vendor:publish --tag="paytr"
Usage
To run this project you will need to add the following environment variables to your .env file
Configs
You can change or get the necessary settings in the config file. This file is important
use PayTR\Config;
You can easily access it with the help of it, you can perform operations as in the example.
The example below is the config that needs to be set for simple api triggering.
Next, we define the required array variable to generate the HASH DATA.
And we set the post data array and trigger the necessary
Then you can activate the PayTR class and operate with the call method.
use PayTR\Paytr;
Using iFrame will return you success and a token after the transaction. In addition, I have included the necessary javascript codes for you.
By including the script with the "javascript_file_url" in the return, you can print the "iframe_code" code wherever you want. Don't forget to include the "script" variable as well.
It's actually that simple!
A payment screen will then appear on your screen. After the transaction made on this screen, the API will return to you, all your successful or unsuccessful returns are specified in the settings;
'merchant_ok_url' => $config->getMerchantOkUrl()
'merchant_fail_url' => $config->getMerchantFailUrl()
This is why these settings are very important.