$model, 'attributes' => [ 'id', 'order_id', 'shipping_name', 'shipping_id', [ 'attribute' => 'type', 'value' => function ($model) { return Delivery::dropDown('type', $model->type); } ], 'status', 'decription:ntext', [ 'attribute' => 'created_at', 'value' => function ($model) { return date('Y-m-d H:i:s', $model->created_at); } ], [ 'attribute' => 'updated_at', 'value' => function ($model) { return date('Y-m-d H:i:s', $model->updated_at); } ], ], ]); ?>