How to show files on bronwer with Yii2
<?php
public function actionRenderBoleto()
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
\Yii::$app->response->headers->add('content-type','application/pdf');
\Yii::$app->response->data = file_get_contents('file.pdf');
return \Yii::$app->response;
}