laravel execute last migration code example
Example 1: migrate specific migration laravel
php artisan migrate --path=/database/migrations/selected
Example 2: re migrate laravel
Try:
composer dump-autoload
php artisan config:cache
If not working also try:
php artisan migrate:refresh.