xutl/laravel-payment is a Laravel package for this is a laravel expansion for the payment..
It currently has 1 GitHub stars and 4 downloads on Packagist.
Install it with composer require xutl/laravel-payment.
Discover more Laravel packages by xutl
or browse all Laravel packages to compare alternatives.
Last updated
This is a aliyun expansion for the laravel
composer require xutl/laravel-payment
This service provider must be registered.
// config/app.php
'providers' => [
'...',
XuTL\Payment\PaymentServiceProvider::class,
];
try {
$wechat = Payment::get('wechat');
} catch (\Exception $e) {
print_r($e->getMessage());
}