id(); $table->string('nama', 80)->unique(); $table->string('no_hp', 20); $table->string('alamat', 100); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sales'); } };