id(); $table->string('name'); $table->decimal('rate', 8, 2)->default(0); $table->boolean('active')->default(false); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('taxrates'); } };