This is a PHP ^8.2
and Laravel ^10.0
/ ^11.0
/ ^12.0
fork of SimpleSoftwareIO/simple-qrcode
(which appears to be a dead repository). The fork applies the major none merged pull requests.
Simple QrCode is an easy to use wrapper for the popular Laravel framework based on the great work provided by Bacon/BaconQrCode.
composer require f9webltd/simple-qrcode
{!! QrCode::size(100)->generate(Request::url()); !!}
<img src="{!! QrCode::format('png')->generate('Embed me into an e-mail!'), 'QrCode.png', 'image/png') !!}" />
<img src="data:image/png;base64, {!! base64_encode(QrCode::format('png')->size(100)->generate('Make me into an QrCode!')) !!}" />
Full documentation available here
You may use this package outside of Laravel by instantiating a new F9WebLtd\QrCode\Generator
class.
use F9WebLtd\QrCode\Generator;
$qrcode = new Generator;
$qrcode->size(500)->generate('Make a qrcode without Laravel!');
This software is released under the MIT license.