simple-qrcode icon indicating copy to clipboard operation
simple-qrcode copied to clipboard

Dead Project?

Open timbogdanov opened this issue 10 months ago • 3 comments

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 avatar Mar 15 '25 16:03 timbogdanov

@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

asikam avatar Mar 21 '25 09:03 asikam

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?

zsaintus avatar Apr 19 '25 22:04 zsaintus

Hello @zsaintus generated qrcode is an svg by default. So inside your view file just print the svg with {!! $qrCode !!}

asikam avatar Apr 25 '25 08:04 asikam