minor improvements

This commit is contained in:
Steffen Mahler 2020-02-04 14:48:15 +01:00
parent 01010db842
commit dd8f653df4
2 changed files with 3 additions and 1 deletions

View File

@ -102,6 +102,8 @@ return [
| Ensure it is uppercase and reflects the 'code' column of the
| countries table.
|
| for example: DE EN FR
| (use capital letters!)
*/
'default_country' => null,

View File

@ -764,7 +764,7 @@ class Cart
function __construct()
{
$this->country = config('app.default_country');
$this->country = strtoupper(config('app.default_country'));
}
};
}