id(); $table->string('name'); $table->string('email')->unique(); $table->string('phone'); $table->string('address'); $table->string('license_number'); $table->date('license_expiry'); $table->date('dob'); $table->enum('status', ['active', 'inactive', 'blocked'])->default('active'); $table->text('notes')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('customers'); } };