jalallinux/laravel-tomanpay

Laravel Tomanpay integration Client

dev-main 2023-07-17 12:42 UTC

README

cover.png

Latest Stable Version Latest Version on Packagist Tests Total Downloads

Toman's financial solutions help you to easily and quickly manage your business's financial flows comprehensively, focus on the value you create in your product and not worry about its financial affairs and processes.

Installation

You can install the package via composer

composer require jalallinux/laravel-tomanpay

Publish config file

You can publish config file to change default configs

 php artisan vendor:publish --provider JalalLinuX\\Tomanpay\\TomanpayServiceProvider --tag config

Usage

The main methods are called statically

use \JalalLinuX\Tomanpay\Model\Payment;

// Create new payment
Payment::create(1000, 'https://site.com/callback/path'): Payment

// Fetch an exists payment detail
Payment::detail('7cadba50-6059-424e-9580-c12448a8046e'): Payment

// Get list of payments
Payment::list(): LengthAwarePaginator

// Verify an exist payment
Payment::verify('7cadba50-6059-424e-9580-c12448a8046e', false): bool

// Redirect an exist payment to PSP
Payment::redirect('7cadba50-6059-424e-9580-c12448a8046e'): RedirectResponse

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.