index.php 1.01 KB
<?php
use yii\helpers\Html;
use frontend\themes\threproject\assets\AppAsset;

/**
 *
 * @author FilamentV <vortex.filament@gmail.com>
 * @copyright (c), Thread
 *
 * @var $callback \frontend\modules\form\modules\callback\models\Callback
 * @var $params \thread\modules\sys\modules\configs\components\ConfigsParams
 */
$asset = AppAsset::register($this);
$params = Yii::$app->param;
?>
<!-- page-title start -->
<!-- ================ -->
<h1 class="page-title">
    <?= Yii::t('feedback', 'Feedback') ?>
</h1>
<!-- page-title end -->
<table border="0" cellpadding="3" cellspacing="0" width="100%" style="padding: 0 5px;">
    <tr>
        <td>
            <?= $callback->getAttributeLabel('user_name') ?>
        </td>
        <td style="text-align: right;">
            <?= $callback['user_name'] ?>
        </td>
    </tr>
    <tr>
        <td>
            <?= $callback->getAttributeLabel('phone') ?>
        </td>
        <td style="text-align: right;">
            <?= $callback['phone'] ?>
        </td>
    </tr>
</table>
<hr>