<?php // original date format is YYYY-mm-dd $date = $post->event_start_date; // new format is dd-Month-YYYY $newDate = date('d F Y', strtotime($post->event_start_date)); echo $newDate;