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