Reputation: 15
I am new to the Yii platform, and I am wondering how to change the dateformat. It's currently in the American date format that is YYYY-MM-DD. I want it to be DD-MM-YYYY. Is there any way to this?
Upvotes: 0
Views: 34
Reputation: 76
config file add in 'components' => [] You can add it and edit it to your style.
'formatter' => [
'dateFormat' => 'yyyy-MM-dd',
'datetimeFormat' => 'yyyy-MM-dd HH:mm:ss',
'decimalSeparator' => ',',
'thousandSeparator' => ' ',
],
Upvotes: 1