When I run in terminal php artisan migrate this results in 'Nothing to migrate' when indeed there is nothing to migrate.
When I use Artisan::call('migrate') in code (use this in a custom Artisan command) this doesn't return any message. It just executes the code without any feedback.
If I vardump() the result of the Artisan::call method it just returns an int(0)
Is it possible to get the response of the Artisan call method?