I need to show my created_at column in datatable as "25 June, 2023".
How can I show this.
<x-slot name="script"> <script> var datatablelist = $('#productTable').DataTable({ processing: true, serverSide: true, ajax: "{!! route('purchases.index') !!}", columns: [ {"render": function(data, type, full, meta) { return meta.row + meta.settings._iDisplayStart + 1; } }, { data: null, render: function(data) { return ${data.created_at}; } },