id(); $table->string('name'); $table->string('email')->nullable()->unique(); $table->string('phone')->nullable(); $table->text('address')->nullable(); $table->string('status')->default('active'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('customers'); } };