Shipping Tax Card
This commit is contained in:
parent
da08e9ff37
commit
eb55b01b0d
13 changed files with 86 additions and 81 deletions
|
|
@ -18,7 +18,7 @@ class CreateShippingPricesTable extends Migration
|
|||
$table->unsignedInteger('shipping_id');
|
||||
|
||||
$table->decimal('price', 8, 2)->nullable();
|
||||
$table->decimal('tax', 5, 2)->nullable();
|
||||
$table->decimal('tax_rate', 5, 2)->nullable();
|
||||
$table->decimal('factor', 5, 2)->nullable();
|
||||
|
||||
$table->decimal('total_from', 8, 2)->nullable();
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ class CreateShoppingOrderItemsTable extends Migration
|
|||
$table->unsignedInteger('product_id');
|
||||
$table->unsignedInteger('qty');
|
||||
$table->decimal('price', 8, 2)->nullable();
|
||||
$table->decimal('tax_rate', 5, 2)->nullable();
|
||||
$table->string('slug')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue