@luciano_canziani You can’t “convert” a Laravel app to a mobile app. Laravel is PHP and runs on a server; mobile apps run on the client (the user’s actual device). So you need to make an actual mobile app, that communicates with your app via an API.
@luciano_canziani Check PWA (Progressie Web Application), it allows you to use your existing Laravel Application. I've never had to use it myself but I've seen others successfully use it for their Laravel + Inertia applications. Do some research via Google on this and you'll find a lot of useful information.