id(); $table->string('tax_code'); $table->string('tax_no')->unique(); $table->string('npwpd'); $table->string('wp_name'); $table->string('business_name'); $table->text('address'); $table->date('start_validity'); $table->date('end_validity'); $table->decimal('tax_value', 12, 2); $table->string('subdistrict'); $table->string('village'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('taxs'); } };