id(); $table->string('customer_number'); $table->string('name'); $table->string('phone'); $table->string('address'); $table->enum('gender', ['Perempuan', 'Laki-laki']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('customers'); } };