migrate just changes in new table laravel code example
Example 1: migrate fresh specific table
php artisan migrate:refresh --path=/database/migrations/fileName.php
Example 2: re migrate laravel
Try:
composer dump-autoload
php artisan config:cache
If not working also try:
php artisan migrate:refresh.