0
You are not setting the name of your table in your Migrations, see that the model according to the Laravel doc.
Ex:
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
});
One tip is that when creating your Migration, use --create=nome_da_tabela
it will create the basic structure for you.
It seems that the name of the table is empty.
– rray