Okay so for some unknown reason you decided to save you database to sqlite yes…. No bushtit solution …

First you need to localize where your php processor is installed. If you are using laragon it should be under C:/laragon/bin/php/php8  and there look for php.ini.

Inside the file find and uncomment those entries:
extension=pdo_sqlite
extension=sqlite3

Now inside your .env file edit those:

DB_CONNECTION=sqlite
DB_DATABASE=”E:/patch_to_project/database/database.sqlite”

DB_FOREIGN_KEYS=true
.

After those changes you should be able to migrate your data like normal mysql.