first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
return [
'label' => 'Tax Class',
'based_on' => 'Based On',
'name' => 'Tax Name',
'country' => 'Country',
'state' => 'State',
'city' => 'City',
'zip' => 'Zip',
'rate' => 'Rate %',
// Validation
'rates.*.name' => 'Tax Name',
'rates.*.rate' => 'Rate',
];

View File

@@ -0,0 +1,10 @@
<?php
return [
'taxes' => [
'index' => 'Index Tax',
'create' => 'Create Tax',
'edit' => 'Edit Tax',
'destroy' => 'Delete Tax',
],
];

View File

@@ -0,0 +1,5 @@
<?php
return [
'taxes' => 'Taxes',
];

View File

@@ -0,0 +1,27 @@
<?php
use Modules\Tax\Entities\TaxClass;
return [
'tax' => 'Tax',
'taxes' => 'Taxes',
'table' => [
'tax_class' => 'Tax Class',
],
'tabs' => [
'group' => [
'tax_information' => 'Tax Information',
],
'general' => 'General',
'rates' => 'Rates',
],
'form' => [
'add_new_rate' => 'Add New Rate',
'delete_rate' => 'Delete Rate',
'based_on' => [
TaxClass::SHIPPING_ADDRESS => 'Shipping Address',
TaxClass::BILLING_ADDRESS => 'Billing Address',
TaxClass::STORE_ADDRESS => 'Store Address',
],
],
];