I\'m trying to set the same global locale of laravel which is :
config(\'app.locale\')
to work with Carbon.
It seems like you can d
I configured it in the AppServiceProvider.
class AppServiceProvider extends ServiceProvider { public function boot() { // Localization Carbon \Carbon\Carbon::setLocale(config('app.locale')); } }