I run the Artisan command in the code like
Artisan::call('migrate', ['--path' => 'database/migrations/core']);
I Need to know the columns added by that batch of migration which ran recently. I tried using Artisan::output();
command but it returns the migration name alone.
Is there any way to get the column names of the migration batch or to extract the column name from the migration name?