Simple QrCode is an easy to use library made for Laravel. We found ourselves needing to make quite a few QrCodes and were not able to find an easy to use library for Laravel.
We use this by adding
<div class="visible-print text-center">
{{ QrCode::size(100)->generate(Request::url()); }}
<p>Scan me to return to the original page.</p>
</div>
into our footer file and only displaying the code when they are in print mode. This makes it very easy for people to return to our pages after they have printed a page.
We just pushed another update to this.
If you all find this useful or find an issue, please let us know! We love to hear any and all feedback! :D
Life saver. I will test it tonight. Thanks!
Hi SimplyCorey,
Thanks for sharing. Only a question, is there any limit for number of Qr Codes?
Thanks in advanced
codeATbusiness said:
Hi SimplyCorey,
Thanks for sharing. Only a question, is there any limit for number of Qr Codes?
Thanks in advanced
No limit. You can make as many qr codes as you want.
echo QrCode::generate('something');
echo QrCode::generate('something else');
mschinis said:
Life saver. I will test it tonight. Thanks!
Awesome! Hopefully it was able to meet your needs!
Hi SimplyCorey,
It was a cakewalk using this package !! Thanks for that .
However I was wondering is there an api to read the data from qr code as well?
Regards, Yashaswini
Yashaswini said:
Hi SimplyCorey,
It was a cakewalk using this package !! Thanks for that .
However I was wondering is there an api to read the data from qr code as well?
Regards, Yashaswini
There is not currently a way to decode a qrcode using the API. Sorry.
SimplyCorey said:
Yashaswini said:
Hi SimplyCorey,
It was a cakewalk using this package !! Thanks for that .
However I was wondering is there an api to read the data from qr code as well?
Regards, Yashaswini
There is not currently a way to decode a qrcode using the API. Sorry.
Hello how to attach QR code as image into emel blade template.?
SimplyCorey said:
codeATbusiness said:
Hi SimplyCorey,
Thanks for sharing. Only a question, is there any limit for number of Qr Codes?
Thanks in advanced
No limit. You can make as many qr codes as you want.
echo QrCode::generate('something'); echo QrCode::generate('something else');
so, what's mean This method must be called last if using within a chain, how can i generate more than one in a chain
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community