You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
426 B
18 lines
426 B
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Intervention\Image\Facades\Image;
|
|
use SimpleSoftwareIO\QrCode;
|
|
|
|
class TestController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$qrcode = QrCode\Facades\QrCode::format("png")->generate("weixin://wxpay/bizpayurl?pr=pbjXPNC");
|
|
$file = "public/test3.png";
|
|
Storage::disk('local')->put($file, $qrcode);
|
|
}
|
|
}
|