laravel delete from database migrateion code example
Example 1: re migrate laravel
Try:
composer dump-autoload
php artisan config:cache
If not working also try:
php artisan migrate:refresh.
Example 2: laravel drop table migration
Schema::drop('users');
Schema::dropIfExists('users');