HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/farmfun/reserveren.farmfun.be/config/shop.php
<?php

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'),

    /*
    |--------------------------------------------------------------------------------------------------------
    | County 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',

    /*
    |--------------------------------------------------------------------------------------------------------
    | Product price including or excluding vat
    |--------------------------------------------------------------------------------------------------------
    |
    | Set this option to true if you would like to enter product prices including vat. Or to false if you
    | would like to enter them excluding vat.
    */
    'product_price_entered_inc_vat' => false,
];