mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
39 lines
749 B
PHP
39 lines
749 B
PHP
<?php
|
|
|
|
namespace App\Http\Admin\Services;
|
|
|
|
use App\Models\Trade as TradeModel;
|
|
use App\Services\Pay\Alipay as AlipayService;
|
|
|
|
class AlipayTest extends PayTest
|
|
{
|
|
|
|
protected $channel = TradeModel::CHANNEL_ALIPAY;
|
|
|
|
public function scan(TradeModel $trade)
|
|
{
|
|
$alipayService = new AlipayService();
|
|
|
|
$code = $alipayService->scan($trade);
|
|
|
|
$codeUrl = null;
|
|
|
|
if ($code) {
|
|
$codeUrl = $this->url->get(
|
|
['for' => 'home.qrcode'],
|
|
['text' => urlencode($code)]
|
|
);
|
|
}
|
|
|
|
return $codeUrl ?: false;
|
|
}
|
|
|
|
public function status($tradeNo)
|
|
{
|
|
$alipayService = new AlipayService();
|
|
|
|
return $alipayService->status($tradeNo);
|
|
}
|
|
|
|
}
|