// Format date to DD-MM-YYYY function formatDateDMY($date) { if (empty($date)) return '-'; $d = new DateTime($date); return $d->format('d-m-Y'); }
Sign in to your account to continue