what's in your .env file because that will be used in preference to values in your database.php file
Check for another homestead database on your homestead machine
Are you running the migration from the homestead command line?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi, Im just new in Laravel Homestead. I'm just wondering why the table that migrated not showing up on mysql database.
database.php value:
'mysql' => [ 'driver' => 'mysql', 'host' => env('DB_HOST', 'localhost'), 'database' => env('DB_DATABASE', 'tagalogtms'), 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, ],
migration result:
vagrant@homestead:~/laravel_projects/tagalogtms$ php artisan migrate Migrated: 2015_08_31_065320_address_list_table vagrant@homestead:~/laravel_projects/tagalogtms$
Could anyone provide me any idea/s what else need to look on, please? any thought is Much appreaciated.
Please or to participate in this conversation.