Skip to content

Magento2: Date showing wrong on grid column

I created one grid and showed the date there. Database data and grid values are not matched. Grid value showing 1 back date instead of same as database.

Below is my DB table value:

enter image description here

And below code snippet I am using for grid column value:

$this->addColumn('process_ship_date', array(
            'header'    => __('Process Ship Date'),
            'type'      => 'date',
            'index'     => 'process_ship_date'
        ));

And below are my grid value:

enter image description here

Also, the date format does not match in Grid.

Can anyone please look into this.