Cómo agregar campo a la tabla por otra migración en Laravel
php artisan make:migration add_store_id_to_users_table --table=users
Mohamad
php artisan make:migration add_store_id_to_users_table --table=users
Schema::table('users', function($table)
{
$table->string('phone_nr')->after('id');
});