id(); $table->string('name'); $table->string('email')->unique(); $table->string('phone')->nullable(); $table->text('address')->nullable(); $table->string('city')->nullable(); $table->string('country')->nullable(); $table->enum('status', ['active', 'inactive', 'pending'])->default('active'); $table->text('notes')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };