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