id(); $table->string('room'); // e.g., 'lobby' or 'game_1' $table->foreignId('user_id')->constrained(); $table->text('message'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('chats'); } };