Forked from ahmadshobirin/set locale and timezone indonesia in laravel.md
Created
December 6, 2020 06:51
-
-
Save dzulfahmi/07e22ec2ef24dab94aabd1019c00bef7 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
Thx bro