id(); $table->string('name'); $table->string('email'); $table->string('subject')->nullable(); $table->string('mobile',15); $table->string('hash',32)->unique()->nullable(); $table->text('body'); $table->boolean('is_answered')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contacts'); } };