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