minor improvements
This commit is contained in:
parent
01010db842
commit
dd8f653df4
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -764,7 +764,7 @@ class Cart
|
|||
|
||||
function __construct()
|
||||
{
|
||||
$this->country = config('app.default_country');
|
||||
$this->country = strtoupper(config('app.default_country'));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue