Change datetime from Mysql to formatted String

I have a datetime in a table defined by a query.

{{tItem.selectedRow.iIFSDistroDate }}

image

I need to put this in a modal as Text so I can style it and show as format LL (April 4, 2022)

@Preston You can use moment here

{{moment(tItem.selectedRow.iIFSDistroDate).format(“LL”)}}

1 Like

Worked great. Thank you.