The error message you’re encountering, SQLSTATE[HY000] [1049] Unknown database 'forge', indicates that the Laravel application is unable to find the specified database.

- Check your
.envfile: Ensure that the database configuration in your Laravel application’s.envfile is correctly set up. Specifically, check theDB_CONNECTION,DB_HOST,DB_PORT,DB_DATABASE,DB_USERNAME, andDB_PASSWORDvariables to make sure they match your database configuration. - Database exists: Verify that the database specified in the
.envfile actually exists on your database server. You can do this using a database management tool like phpMyAdmin, MySQL Workbench, or by running a command-line query. - Database permissions: Ensure that the database user specified in the
.envfile has the necessary permissions to access and modify the database. - Database connection: Test the database connection from your Laravel application. You can do this by running the
php artisan migratecommand. If there’s an issue with the database connection, Laravel will provide more detailed error messages that can help pinpoint the problem. - Database configuration cache: If you’ve recently made changes to your
.envfile, clear the Laravel configuration cache by runningphp artisan config:cacheto ensure that the changes are reflected. - Database server status: Ensure that your database server is running and accessible from your Laravel application’s server.
Step 1:-

Step 2:- check modal
Step 3:- Check .env
In my case, I am missing in Env and not configured with the database.
DB_DATABASE_TEAM_RATING_COUNT=mysql
DB_HOST_TEAM_RATING_COUNT=127.0.0.1
DB_PORT_TEAM_RATING_COUNT=3306
DB_DATABASE_TEAM_RATING_COUNT=wz_team_rating_ms
DB_USERNAME_USER_COUNT=root
Output:-

View:-
