id(); $table->string('name'); $table->string('phone_number'); $table->string('email'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('user_chats'); } };