I searched the site and other places but I couldn't find a way to integrate Fingerprint scanner to Laravel project.
I created an App with Laravel that stores patients information but I need to store fingerprint of each patient then find each person by his fingerprint.
Most important part is that the App should be offline, I mean it shouldn't be an internet connection.
@armani how would you use laravel if you don’t have an internet connection?
It’s possible to use laravel as part of a progressive web app. These allow offline functionality so can continue to work if you loose internet connection. You’ll need to be online initially to cache the app locally though. Any data will be stored in local storage within your browser.
If you are doing user lookup or login, this can’t work locally as you need to connect to your database which will be remote.
Alternatively you could run your application within your network on your LAN, but that wouldn’t really be an offline app.