I have a table with settings column having the following data in three different rows:
{{product.description}}
{{user.email}}
{{last_date}}
I want to append the string '| format' with dynamic data, the output should be like this
{{product.description | format}}
{{user.email | format}}
{{last_date | format}}
I tried with MySQL REPLACE() method but problem is how to match this specified pattern.
What will be the UPDATE query for this?