bigIncrements('id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->text('message')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::drop('contact'); } };