Hacer una migración para agregar una columna
Create a migration file using cli command: php artisan make:migration add_paid_to_users_table --table=usersA file will be created in the migrations folder, open it in an editor.Add to the function up(): Schema::table('users', function (Blueprint…