Laravel is configured to use MySQL by default.
To change its default database type, edit the file config/database.php:
- Search for 'default' =>env('DB_CONNECTION', 'mysql')
- Change it to whatever required like 'default' =>env('DB_CONNECTION', 'sqlite')
By using it, MySQL changes to SQLite.