How to echo out the correct date format

Solution:

Simple, using PHP’s date time

echo (new DateTime(get_post_meta($post->ID,'event_date',true)))->format('d M Y');

Output

echo (new DateTime('20181225'))->format('d M Y');

25 Dec 2018

Sandbox