jalallinux/laravel-tomanpay is a Laravel package for laravel tomanpay integration client.
It currently has 1 GitHub stars and 0 downloads on Packagist.
Install it with composer require jalallinux/laravel-tomanpay.
Discover more Laravel packages by jalallinux
or browse all Laravel packages to compare alternatives.
Last updated

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.
You can install the package via composer
composer require jalallinux/laravel-tomanpay
You can publish config file to change default configs
php artisan vendor:publish --provider JalalLinuX\\Tomanpay\\TomanpayServiceProvider --tag config
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
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.