Looking to hire Laravel developers? Try LaraJobs

laravel-payment maintained by xutl

Description
This is a Laravel expansion for the Payment.
Last update
2018/12/27 09:33 (dev-master)
License
Links
Downloads
4
Tags

Comments
comments powered by Disqus

laravel-payment

This is a aliyun expansion for the laravel

License Latest Stable Version Total Downloads

接口支持

  • WeChat
  • AliPay

环境需求

  • PHP >= 7.0

Installation

composer require xutl/laravel-payment

for Laravel

This service provider must be registered.

// config/app.php

'providers' => [
    '...',
    XuTL\Payment\PaymentServiceProvider::class,
];

Use

try {
	$wechat = Payment::get('wechat');
	
} catch (\Exception $e) {
	print_r($e->getMessage());
}