neilpato22 said:
try 'host' => 'localhost'
Hi Thanks neilpato22 for the suggestion. Just tried that, but still using a simple route in routes.php it creates the table in homestead instead of distribution.
Route::get('/', function() { Schema::create('frog', function($table) { $table->increments('id'); }); });
Alright figured it out, my problem was in app/config/local there is another database.php config file that must have come pre-configured. Change that and it works, like a charm
Thanks for the quick response neilpato22.
:-)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community