4 lines
325 B
PHP
Executable File
4 lines
325 B
PHP
Executable File
<?php
|
|
use yii\helpers\Html;
|
|
?>
|
|
<?= Html::a($model->name, ['/page/view', 'slug' => Yii::$app->abt->simpleSlug($model->name), 'id' => $model->id]) ?> <small><span class="fa fa-calendar"></span> <?= Yii::$app->formatter->asDatetime($model->created_at) ?> <span class="fa fa-eye"></span> <?= number_format($model->hit) ?></small>
|