Reputation: 119
<td ng-bind="Order.created_at"></td>
Displaying output as 2019-12-08 10:34:06
how to show it as 08-12-2019 10:34:06
Upvotes: 0
Views: 448
Reputation: 781
In angular 2 and above use default date pipe like below one.
<p>{{ Order.created_at | date:'dd-MM-yyyy hh:mm:ss'}}</p>
Upvotes: 0