Reputation: 1311
I have the next date:
<p>{{customer.date | date : "fullDate"}}</p>
I would like to have this format: 13 January 2016
I am testing with formats different but dont get it.
How could i do it? thanks,
Upvotes: 0
Views: 30
Reputation: 16651
Take a look at the AngularJS documentation: https://docs.angularjs.org/api/ng/filter/date
<p>{{customer.date | date : "dd MMMM y"}}</p>
Upvotes: 1