Added Class property "$set_schema_table" to edit table name manually (if required)
Added a class property to maintain table name easily if required to change by user manually.
// added in class property
/**
* Schema table name to migrate
* @var string
*/
public $set_schema_table = '{tableName}';
// change table name string to class property
Schema::create($this->set_schema_table, function (Blueprint $table) {{
// change table name string to class property
migrationEndingTemplate = ''' Schema::dropIfExists($this->set_schema_table);
Added Class property "$set_schema_table" to edit table name manually (if required)
Added a class property to maintain table name easily if required to change by user manually.