Dead Project?
Is this project dead? official website is down? QR code generation doesn't work at all. Can you archive this project if its no longer maintained?
@timbogdanov seems dead to me ... forked the project to a public repo: https://github.com/asikam/simple-qrcode and updated the composer json to work with "bacon/bacon-qr-code": "^3.0" and it woks just fine
Hello @asikam I used your package and still got the same error, QR Code is not showing at all. Could you please help me out?
#controller use Asikam\QrCode\Facades\QrCode; $qrCode = QrCode::size(50)->generate($link); #view <img src="data:image/png;base64, {!! base64_encode($qrCode) !!} " alt="Image" style="width: 13%; height: 20%; border-radius: 5px; margin-left: 22rem; margin-top: -1.8rem;">
What could be the problem?
Hello @zsaintus generated qrcode is an svg by default. So inside your view file just print the svg with
{!! $qrCode !!}