var_dump($model->published_at);
$model->published_at = date('Y-m-d h:i', $model->published_at);
var_dump($model->published_at);
$time = strtotime($model->published_at);
var_dump($time);
$time = date('Y-m-d h:i', $time);
var_dump($time);
int(1486924655)
string(16) "2017-02-12 06:37"
int(1486881420)
string(16) "2017-02-12 06:37"
date('Y-m-d h:i', $model->published_at);
1486924655 - 2017-02-12 06:37:35
2017-02-12 06:37:00
1486881420
date('Y-m-d h:i:s', $model->published_at);