Create migration and model for taxrates.

This commit is contained in:
2024-11-26 08:03:05 +01:00
parent 1cb12659a2
commit 2daea2c10a
2 changed files with 44 additions and 0 deletions

11
app/Models/Taxrate.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Taxrate extends Model
{
use SoftDeletes;
}