add another field in existing migration laravel

PHP
php artisan make:migration add_paid_to_users_table --table=usersSchema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Source

Also in PHP: