diff --git a/src/components/pages/marketing/MarketingTable.tsx b/src/components/pages/marketing/MarketingTable.tsx index 1026a11a..08dcf318 100644 --- a/src/components/pages/marketing/MarketingTable.tsx +++ b/src/components/pages/marketing/MarketingTable.tsx @@ -772,6 +772,14 @@ const MarketingTable = () => { } }, }, + { + accessorKey: 'created_at', + header: 'Tanggal Dibuat', + cell: (props) => + props.row.original.created_at + ? formatDate(props.row.original.created_at, 'DD MMM yyyy') + : '-', + }, { id: 'actions', maxSize: 80,