diff --git a/app/Models/Taxrate.php b/app/Models/Taxrate.php new file mode 100644 index 0000000..68ef24c --- /dev/null +++ b/app/Models/Taxrate.php @@ -0,0 +1,11 @@ +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'); + } +};