I implement a QR (simple QR package from laravel) to my invoice for an e-commerce website. When the customer sees the invoice with the QR attached to it, he or she can scan it with the smartphone and it will bring them to a page that shows them the order details,etc and they can click ok to verify it.
My QR on my invoice (dompdf) is as below:
<img style="float:right; margin-bottom:10px;" src="data:images/png;base64, {{ base64_encode(QrCode::format('png')->size(100)->generate('no-idea')) }} ">
Now, the problem is I do not think the customer needs to log in to verify the QR and I do not know how to make it unique. I was thinking once generated, it will bring them to a page , where I need to create a blade template and pass in those order details?
Please advice as I have never done this before.