<?php
use yii\helpers\Html;
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs;
use app\assets\AppAsset;
Html::csrfMetaTags();
include('include/header.php'); // Working translate in this file ?>
<?php echo $content // NOT Working translate from view ?>
<?= $this->render('include/sidebar'); // Working translate in this file ?>
<?= $this->render('include/footer'); // Working translate in this file ?>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>