I can fetch the locale app in blade like this {{ config('app.locale') }}
, however, I want to be able to fetch the locale in javascript, specifically in Vue in order to pass it to moment().locale()
I tried the following on the view home.blade.php it didn't work
moment().locale( {{ config('app.locale') }}
How can I fetch the locale app in Vue?