File: D:/HostingSpaces/SBogers10/shop.komma.nl/config/shop.php
<?php
use App\Vat\VatScenarioEnum;
return [
/*
|--------------------------------------------------------------------------------------------------------
| Shop culture
|--------------------------------------------------------------------------------------------------------
|
| Set the shop culture. This culture determines for example defines which currency
| is used to for the product prices (Dollars, Euros, etc). And for example how decimals are
| separated in numbers (, versus . for example). Do not change this value when in production,
| since for example prices that where entered in Euros will change to the exact same value but
| in Dollars while no conversion takes place.
| The value must be the name of a specific culture, such as "en-US" for English (United States).
| See the regionInfo class and GlobalisationTest for more info on the supported cultures.
*/
'culture' => env('culture', 'nl-NL'),
/*
|--------------------------------------------------------------------------------------------------------
| Country hotlist
|--------------------------------------------------------------------------------------------------------
|
| A list of most used countries, specified by their ISO 3166 alpha 3 codes. When you specify these will
| be the first presented of users when checking out their shopping cart. User can use other countries
| but they need to select them in a select with all countries.
*/
'country_hotlist' => ['NLD', 'BEL', 'DEU', 'GBR'],
'country_hotlist_default' => 'NLD',
/*
|--------------------------------------------------------------------------------------------------------
| Assortment settings
|--------------------------------------------------------------------------------------------------------
|
| These are the settings for displaying the frontend assortment
*/
'assortment' => [
'top_level_amount_to_display' => 1, //The amount of top level items to show on the "home" page
],
/*
|--------------------------------------------------------------------------------------------------------
| Vat settings
|--------------------------------------------------------------------------------------------------------
|
*/
'vat' => [
'scenarios' => [
VatScenarioEnum::high_inc => ['percentage' => 21, 'incVat' => true], //First one will be the default for selects
VatScenarioEnum::high_ex => ['percentage' => 21, 'incVat' => false, 'enabled' => false],
VatScenarioEnum::low_inc => ['percentage' => 9, 'incVat' => true],
VatScenarioEnum::low_ex => ['percentage' => 9, 'incVat' => false, 'enabled' => false],
VatScenarioEnum::zero => ['percentage' => 0, 'incVat' => true, 'enabled' => false],
],
'default_scenario' => VatScenarioEnum::high_inc
]
];