I need to format the date for 00-00-0000, the code below is view of laravel .blade.php
<td class="col-sm-2" data-bind="text: created_at"></td>
created_at is the database field.
Just to illustrate, to limit characters I've got so, but with date I can not
<td class="col-sm-3" data-bind="text: plot ? plot.trunc(150) : null"></td>
Thanks for any help