\r\n
\r\n - {{$moment(date).format('YYYY-MM-DD')}} - $moment(date).format('YYYY-MM-DD')
\r\n - {{$moment(date).format('YYYY-MM-DD')}} - $moment(date).format('YYYY-MM-DD')
\r\n - {{$moment(date).add(2, 'hours').format('DD/MM/YYYY')}} - $moment(date).add(2, 'hours').format('DD/MM/YYYY')
\r\n - {{$moment(date).add(2, 'hours').format('DD/MM/YYYY')}} - $moment(date).add(2, 'hours').format('DD/MM/YYYY')
\r\n - {{$moment(date).startOf('day').format('DD/MM/YYYY')}} - $moment(date).startOf('day').format('DD/MM/YYYY')
\r\n - {{$moment(date).format('DD/MM/YY')}} - $moment(date).format('DD/MM/YY')
\r\n - {{$moment(date).format('LS')}} - $moment(date).format(LS)
\r\n - {{$moment(date).format('LL')}} - $moment(date).format(LL)
\r\n - {{$moment(date).format('LL LS')}} - $moment(date).format(LL LS)
\r\n - {{$moment(date).fromNow()}} - $moment(date).fromNow()
\r\n - {{$moment(date).fromNow(true)}} - $moment(date).fromNow(true)
\r\n\r\n
\r\n\r\n
\r\n The present definition includes the following
\r\n LTS : 'h:mm:ss A',
\r\n LT : 'h:mm A',
\r\n L : 'MM/DD/YYYY',
\r\n LL : 'MMMM D, YYYY',
\r\n LLL : 'MMMM D, YYYY h:mm A',
\r\n LLLL : 'dddd, MMMM D, YYYY h:mm A'
\r\n\r\nYou can use any of these or change the input passed into moment().format(). For example, for your case you can pass moment.utc(dateTime).format('MMMM D, YYYY').\r\n
\r\n
\r\n