laravel eloquent rename column and set PK code example
Example 1: migration rename column laravel
php artisan make:migration rename_author_id_in_posts_table --table=posts
Example 2: laravel rename column name
Schema::table('users', function (Blueprint $table) {
$table->renameColumn('from', 'to');
});