Renaming a column in Laravel requires the doctrine/dbal package, as Laravel itself does not handle column renaming natively.
Install the Doctrine/DBAL Package
composer require doctrine/dbal
Create a New Migration
php artisan make:migration rename_column_in_users_table --table=users
Edit Migration File
Run Migration
php artisan migrate