In short yes it's doable.
The Qr code needs to contain a link to your finish order route with a uuid or similar that puts the order into finish state. You can use something similar to how Laravel handles the reset password link.
I am new to laravel and currently using a simple qr code package that I want to add to my e-commerce website. The idea is when a customer placed an order, the merchant will deliver the item via courier. The order status in the merchant dashboard is in progress when an item is placed. When the item arrives, the merchant view the purchase order where the QR code is there and scan it with his phone and updates the order status to "Delivered". This means it will require some sort of linkage to the backend database to update it.
I am unfamiliar with this. Is this doable?
Please or to participate in this conversation.