Forked from dzulfahmi/set locale and timezone indonesia in laravel
Created
March 24, 2021 15:32
-
-
Save adinata-id/d62fe76f5031bd04c8ed9cb842d2518a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open File -> App\Providers\AppServiceProvider | |
And change method boot | |
public function boot() | |
{ | |
config(['app.locale' => 'id']); | |
Carbon::setLocale('id'); | |
} | |
Open File and changes -> config/app.php | |
'timezone' => 'Asia/Jakarta', | |
'locale' => 'id', | |
'faker_locale' => 'id_ID', | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment