From 65dd1eca01481f5eb34a4ad3522a896ae4363ae0 Mon Sep 17 00:00:00 2001 From: Mohit Panjwani Date: Sat, 19 Feb 2022 13:49:38 +0530 Subject: [PATCH] change default currency to USD --- app/Models/Company.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Company.php b/app/Models/Company.php index 23b01825..006a09b0 100644 --- a/app/Models/Company.php +++ b/app/Models/Company.php @@ -217,7 +217,7 @@ class Company extends Model implements HasMedia 'estimate_billing_address_format' => $billingAddressFormat, 'payment_company_address_format' => $companyAddressFormat, 'payment_from_customer_address_format' => $paymentFromCustomerAddress, - 'currency' => request()->currency ?? 12, + 'currency' => request()->currency ?? 1, 'time_zone' => 'Asia/Kolkata', 'language' => 'en', 'fiscal_year' => '1-12',