M5: Workerman 常驻服务 + AI 审核/润色插件 + 支付插件(支付宝/微信/沙箱)+ 会员插件(套餐/订阅/付费文章)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Plugins\Neatstudio\Payment;
|
||||
|
||||
use App\Blog\Support\PluginManager;
|
||||
use App\Blog\Support\PluginServiceProvider;
|
||||
|
||||
class ServiceProvider extends PluginServiceProvider
|
||||
{
|
||||
protected function boot(PluginManager $manager): void
|
||||
{
|
||||
$this->loadRoutes(__DIR__.'/../routes/web.php');
|
||||
|
||||
$manager->addFilter('payment.gateway', function (array $gateways) {
|
||||
$gateways['alipay'] = '支付宝';
|
||||
$gateways['wechat'] = '微信支付';
|
||||
$gateways['sandbox'] = '沙箱模拟';
|
||||
|
||||
return $gateways;
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user