orkhanahmadov/laravel-goldenpay is a Laravel package for goldenpay package for laravel.
It currently has 1 GitHub stars and 39 downloads on Packagist (latest version 3.1.0).
Install it with composer require orkhanahmadov/laravel-goldenpay.
Discover more Laravel packages by orkhanahmadov
or browse all Laravel packages to compare alternatives.
Last updated
Full-feature Laravel package for Goldenpay integration.
| Package | PHP | Laravel | |---------|------|---------------| | 1.0 | ^7.2 | 5.8.* or ^6.0 | | 2.0 | ^7.2 | ^6.0 or ^7.0 | | 3.0 | ^7.3 or ^8.0 | ^8.0 |
You can install the package via composer:
composer require orkhanahmadov/laravel-goldenpay
Run this command to publish required migration file:
php artisan vendor:publish --provider="Orkhanahmadov\LaravelGoldenpay\LaravelGoldenpayServiceProvider" --tag=migrations
First, set your Goldenpay merchant name and auth key in .env file.
You can get these from Goldenpay Dashboard.
GOLDENPAY_AUTH_KEY=your-auth-key
GOLDENPAY_MERCHANT_NAME=your-merchant-name
To use Goldenpay service you need instance of Orkhanahmadov\LaravelGoldenpay\Goldenpay.
You can instantiate this class using Laravel's service container, for example by injecting to your controller
use Orkhanahmadov\LaravelGoldenpay\Goldenpay;
class MyController
{
public function index(Goldenpay $goldenpay)
{
//
}
}
Or you can use Laravel's service resolver to create instance of the class:
use Orkhanahmadov\LaravelGoldenpay\Goldenpay;
class MyClass
{
public function doSomething()
{
$goldenpay = app(Goldenpay::class);
//
}
}
payment()Prepares payment based on passed credentials and accepts 4 arguments:
Amount - Payment amount, only integer values accepted
For example, for you want to create payment for 10.25, then pass it as 1025.Card type - Requires instance of Orkhanahmadov\Goldenpay\Enums\CardType.
CardType::VISA() for VISA, CardType::MASTERCARD() for MasterCardDescription - Payment descriptionLanguage (optional) - Sets payment page interface language. Requires instance of Orkhanahmadov\Goldenpay\Enums\Language.
Language::EN() for english, Language::RU() for russian, Language::AZ() for azerbaijani.
If nothing passed service will use Laravel's active locale.$goldenpay = app(Goldenpay::class);
$goldenpay->payment(1000, CardType::MASTERCARD(), 'my payment');
Method returns created instance of Orkhanahmadov\LaravelGoldenpay\Models\Payment model.
You can use $payment_url property to get unique payment URL and redirect user to this URL to start payment.
$payment = $goldenpay->payment(1000, CardType::MASTERCARD(), 'my payment');
$payment->payment_url; // redirect user to this URL to start payment
result()Checks payment result based on previous payment key. Accepts single argument:
Payment - This is Goldenpay's payment key as a string, or instance of previously created Orkhanahmadov\LaravelGoldenpay\Models\Payment model.$goldenpay = app(Goldenpay::class);
$paymentModel = $goldenpay->payment(1000, CardType::MASTERCARD(), 'my payment');
$result = $goldenpay->result($paymentModel);
// or
$result = $goldenpay->result('1234-ABCD-5678');
Method returns updated instance of Orkhanahmadov\LaravelGoldenpay\Models\Payment model with Goldenpay's response.
Goldenpay requires to have endpoints for successful and unsuccessful payment.
For each of this endpoints Goldenpay sends GET request with payment_key query string attached.
To get payment result you need to create a route to accept these requests and fetch result of the payment using received payment_key.
Package ships with a controller that helps to simplify this process. To get started, first create a GET route for successful or unsuccessful payments and add full URL in Goldenpay Dashboard to corresponding field.
Route::get('payments/successful', 'App\Http\Controllers\Payment\SuccessfulPaymentController@index');
Create a controller class for your route and extend Orkhanahmadov\LaravelGoldenpay\Http\Controllers\GoldenpayController.
use Orkhanahmadov\LaravelGoldenpay\Http\Controllers\GoldenpayController;
class SuccessfulPaymentController extends GoldenpayController
{
public function index()
{
// return a view or JSON, totally up to you
}
}
By extending Orkhanahmadov\LaravelGoldenpay\Http\Controllers\GoldenpayController,
your controller will automatically check for payment result based on payment_key query string.
In your controller you can access to $payment property which will have payment results from Goldenpay.
public function index()
{
$this->payment->status; // will return payment status
$this->payment->successful; // will return true if payment was successful or false if unsuccessful
}
You can use same endpoint for both successful and unsuccessful payments and decide what you want to show user based on
$this->payment->successful state or you create separate endpoints and controllers and
extend Orkhanahmadov\LaravelGoldenpay\Http\Controllers\GoldenpayController in both controllers.
Package ships with Orkhanahmadov\LaravelGoldenpay\Models\Payment Eloquent model.
Model stores following information for each payment:
payment_key - string, unique payment key provided by Goldenpayamount - integer, payment amountcard_type - enum, "m" for MasterCard, "v" for VISAlanguage - enum, "en" for English, "ru" for Russian, "lv" for Azerbaijanidescription - string, payment descriptionstatus - integer, payment status codemessage - string, payment status messagereference_number - string, payment reference numbercard_number - string, encrypted, card number used for paymentpayment_date - datetime, payment datechecks - integer, payment check countBesides usual Eloquent functionality this model also has specific accessors, scopes and relationship abilities which you can utilize.
successful - Returns true if payment marked as successful, false otherwisepayment_url - Returns payment page url. Returns null if payment marked as successfulformatted_amount - Returns "amount" in decimal formcard_number_decrypted - Returns decrypted "card_number" value. Returns null if card number encrypting is turned offwhereSuccessful() - Filters "successful" payments onlywherePending() - Filters "pending" payments only. Pending payments are the payments that not successful
and either created within 30 minutes or have less than 3 payment checks.You can make any existing Eloquent model "payable" and attach Goldenpay payments to it.
Use Orkhanahmadov\LaravelGoldenpay\Traits\Payable trait in your existing model to establish direct model relationship.
Trait usage requires to have amount() description() methods to be defined in your model:
amount() - Must return payment amount in integerdescription() - Must return description for payment instanceuse Illuminate\Database\Eloquent\Model;
use Orkhanahmadov\LaravelGoldenpay\Traits\Payable;
class Product extends Model
{
use Payable;
protected $fillable = [
'name',
'color',
'size',
'price',
];
protected $casts = [
'price' => 'float', // lets image that you store price as float, like "15.70" in "products" table
];
protected function amount(): int
{
// this method needs to return integer value of price
return $this->price * 100;
}
protected function description(): string
{
// this method needs to return description for payment instance
// try to use both unique and easy to read identifier
return $this->id . ' - ' . $this->name . ' - ' . $this->color;
}
}
Now Product model has direct relationship with Goldenpay payments.
By using Payable your model also gets access to payment related relationships and payment methods.
createPayment()$product = Product::find(1);
$product->createPayment(CardType::VISA()); // uses product amount() and description() to create new payment instance
You can also override amount and description() for specific payment:
$product->createPayment(CardType::VISA(), 2599, 'my custom description');
Method accepts following arguments:
Card type - Instance of Orkhanahmadov\Goldenpay\Enums\CardTypeAmount (optional) - When used overrides amount() method value in modelDescription (optional) - When used overrides description() method value in modelLanguage (optional) - When skipped will use Laravel's locale. Instance of Orkhanahmadov\Goldenpay\Enums\Language.Method returns created instance of Orkhanahmadov\LaravelGoldenpay\Models\Payment.
payments()Eloquent relationship method. Return all related payments to model.
$product = Product::find(1);
$product->payments; // returns collection of related Payment models
$product->payments()->where('amount', '>=', 10000); // use it as regular Eloquent relationship
successfulPayments()Eloquent relationship method. Return all related successful payments to model.
$product = Product::find(1);
$product->successfulPayments; // returns collection of related Payment models
$product->successfulPayments()->where('amount', '>=', 10000); // use it as regular Eloquent relationship
Package ships with artisan command for checking payment results.
php artisan goldenpay:result
Executing above command will loop through all "pending" payments and update their results.
Command also accepts payment key as an argument to check single payment result.
php artisan goldenpay:result 1234-ABCD-5678
Goldenpay requires manual check for payments to determine their final status.
For example, user might go to payment page then close browser window without entering anything.
These kind payment cases needs to be checked manually to finalize their status.
You can use Laravel's Task Scheduling
for running goldenpay:result command on Cron job.
protected function schedule(Schedule $schedule)
{
$schedule->command('goldenpay:result')->everyFiveMinutes();
}
Because Goldenpay states that each payment session is active only for 15 minutes, it is recommended to keep frequency to 5 or 10 minutes.
Package ships with Laravel events which gets fired on specific conditions.
Available event classes:
Orkhanahmadov\LaravelGoldenpay\Events\PaymentCreatedEvent - gets fired when new payment is createdOrkhanahmadov\LaravelGoldenpay\Events\PaymentCheckedEvent - gets fired when payment is checked for resultOrkhanahmadov\LaravelGoldenpay\Events\PaymentSuccessfulEvent - gets fired when payment finalized as successfulEach event receives instance of Orkhanahmadov\LaravelGoldenpay\Models\Payment Eloquent model
as public $payment property.
You can set up event listeners to trigger when specific payment event gets fired.
protected $listen = [
'Orkhanahmadov\LaravelGoldenpay\Events\PaymentSuccessfulEvent' => [
'App\Listeners\SendPaymentInvoice',
'App\Listeners\SendProductLicense',
],
];
Run this command to publish package config file:
php artisan vendor:publish --provider="Orkhanahmadov\LaravelGoldenpay\LaravelGoldenpayServiceProvider" --tag=config
Config file contains following settings:
auth_key - Defines Goldenpay "auth key", defaults to .env variablemerchant_name - Defines Goldenpay "merchant name", defaults to .env variabletable_name - Defines name for Goldenpay payments database table. Default: "goldenpay_payments"encrypt_card_numbers - Defines if "card_number" field needs to be automatically encrypted
when when creating payments or getting payment results. Default is true,
change to false if you want to disable automatic encryption. Recommended to leave it true for extra layer of security.
Warning! If you already have records in Payments table, changing this value will break encryption/decryption.
Old values won't be encrypted/decrypted automatically, you need to do it manually.payment_events - Payment events related settings
enabled - Defines if payment events are enabled. Set to false to disable all payment eventschecked - "Payment checked" event class. By default uses Orkhanahmadov\LaravelGoldenpay\Events\PaymentCreatedEvent classcreated - "Payment created" event class. By default uses Orkhanahmadov\LaravelGoldenpay\Events\PaymentCheckedEvent classsuccessful - "Payment successful" event class. By default uses Orkhanahmadov\LaravelGoldenpay\Events\PaymentSuccessfulEvent classIf you want to use your own event class for specific payment event you can replace class namespace with your class namespace.
Each payment event receives instance of Orkhanahmadov\LaravelGoldenpay\Models\Payment Eloquent model.
Because of this, make sure you add payment model as dependency to your event class constructor signature or
you can extend Orkhanahmadov\LaravelGoldenpay\Events\PaymentEvent class which already has payment model as dependency.
Setting specific payment event to null disables that event without interrupting others.
composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
If you like my work, if my open-source contributions help you or your company, please consider supporting me through Github Sponsors.
The MIT License (MIT). Please see License File for more information.