@Vaishali-Agarwal said in How to change currency in fronted?:
may be u missed something
This isn't much helpful 😞
Anyway I investigated found the issue. It seems that Bagisto is fetching currency details picking code from both from cache and "currency" variable. I noticed that following 2 SQLs were executed on each page
select * from `currencies` where `code` = 'INR'
select * from `currencies` where `code` = 'USD'
In /bootstrap/cache/config.php APP_CURRENCY was set to 'USD'. I changed it to 'INR' and fixed the problem. I will lated delete the cache and try.