Its actually more laravel/setter problem I guess, but I report here, because if I go to https://github.com/laravel/settler I have no issues section there.

So I'm getting this:
$ vendor\\bin\\homestead make
Strict Standards: Static function Laravel\Homestead\Settings\HomesteadSettings::fromFile() should not be abstract in D:\www\youtube_task\vendor\laravel\homestead\src\Settings\HomesteadSettings.php on line 30
Homestead Installed!
problem when trying to run
vendor\bin\homestead make
The Homestead repo accepts issue reports.
https://github.com/laravel/homestead/issues
This repo is for bug tracking. Use the forums or slack channel for solving your issue
@juslintek just experienced this issue as well and felt sad this issue wasn't answered in this thread: the fix is to set homestead to the latest stable version instead of master:
composer require laravel/homestead ^5.3.2 --dev
@vincentmarle You are my savior - picking lower release version for homestead works for me
https://github.com/laravel/framework/issues/19088#issuecomment-304554295
I Was able to reproduce the problem and found out the solution.
The problem still persists on the newest Laravel/Homestead package.
Here you go:
On a Mac: Open Finder and navigate to /Users/user/.composer/vendor/laravel/homestead/src/MakeCommand.php
I used sublime text on this step, open the MakeCommand.php in sublime, click on find and replace, type in default and click replace all, this will replace all the defaultname variables with name only.
Now type homestead in the terminal, it should work like a charm.
Most helpful comment
I Was able to reproduce the problem and found out the solution.
The problem still persists on the newest Laravel/Homestead package.
Here you go:
On a Mac: Open Finder and navigate to /Users/user/.composer/vendor/laravel/homestead/src/MakeCommand.php
I used sublime text on this step, open the MakeCommand.php in sublime, click on find and replace, type in default and click replace all, this will replace all the defaultname variables with name only.
Now type homestead in the terminal, it should work like a charm.