Tax and Total in Basket Details

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
User avatar
whatdaro
Posts: 42
Joined: 19 May 2021, 17:48

Re: Tax and Total in Basket Details

Post by whatdaro » 12 Oct 2021, 02:19

aimeos wrote: 07 Oct 2021, 07:37 These settings in the ./config/shop.php change all occurences of "VAT" and "tax" to "GST":

Code: Select all

	'i18n' => [
		'en' => [
			'client' => [
				'Incl. %1$s%% VAT' => ['Incl. %1$s%% GST'],
				'+ %1$s%% VAT' => ['+ %1$s%% GST'],
			],
			'client/code' => [
				'tax' => ['GST'],
			]
		]
	],
I already had those entries that did not work.
I found the solution.
'i18n' => [
'en' => [
'client' => [
'Incl. %1$s%% VAT' => ['Excl. %1$s%% GST'],
'Incl. %1$s%% %2$s' => ['Excl. %1$s%% GST'],
'+ %1$s%% VAT' => ['+ %1$s%% GST'],
'+ %1$s%% %2$s' => ['+ %1$s%% GST'],
'VAT ID' => ['GST ID']
]
]
],

Post Reply