env('TAX_RATE', 12), /* |-------------------------------------------------------------------------- | Shoppingcart database settings |-------------------------------------------------------------------------- | | Here you can set the connection that the shoppingcart should use when | storing and restoring a cart. | */ 'database' => [ 'connection' => null, 'table' => 'shoppingcart', ], /* |-------------------------------------------------------------------------- | Destroy the cart on user logout |-------------------------------------------------------------------------- | | When this option is set to 'true' the cart will automatically | destroy all cart instances when the user logs out. | */ 'destroy_on_logout' => false, /* |-------------------------------------------------------------------------- | Default number format |-------------------------------------------------------------------------- | | This defaults will be used for the formated numbers if you don't | set them in the method call. | */ 'format' => [ 'decimals' => 2, 'decimal_point' => '.', 'thousand_seperator' => ',' ], 'currency' => env('DEFAULT_CURRENCY', 'USD'), 'currency_symbol' => env('CURRENCY_SYMBOL', '$') ];