id(); $table->string('asunto'); $table->string('categoria'); $table->text('mensaje'); $table->string('estado')->default('Pendiente'); $table->string('archivo_path')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('consultas'); } };