instruction.php 573 Bytes
<?php
    /**
     * @var View  $this
     * @var array $data
     * @var array $browsers
     * @var array $cityes
     * @var array $countries
     */
    
    use yii\web\View;
    use yiister\gentelella\widgets\Panel;

?>

<div class="row">
    <?php $panel = Panel::begin(
        [
            'header' => \Yii::t('app', 'Инструкции'),
        ]
    ) ?>
  <div class="jumbotron">
    <h1><?=\Yii::t('app', 'Hello, world!')?></h1>
    <p><?=\Yii::t('app', '(подпись для приветствия)')?></p>
  </div>
    <?php $panel::end(); ?>
</div>