id(); $table->string('nomor_pelanggan')->unique(); $table->string('kota_pelayanan'); $table->string('nama'); $table->text('alamat'); $table->decimal('latitude', 22,18); $table->decimal('longitude', 22,18); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };