surat/frontend/modules/chat/views/chat/_chat.php

13 lines
622 B
PHP
Executable File

<div class="<?= Yii::$app->user->getId() == $model->created_by ? 'text-end' : 'text-start' ?>">
<div class="<?= Yii::$app->user->getId() == $model->created_by ? 'text-end' : 'text-start' ?>">
<img class="rounded-circle img-30"
src="<?= Yii::$app->user->identity->getPhoto() ?>" alt="<?= $model->createdBy->realname ?>" width="50">
<div class="">
<?= isset($model->createdBy->realname) ? $model->createdBy->realname : '' ?><br />
<small><?= Yii::$app->formatter->asDatetime($model->created_at) ?></small>
</div>
<?= $model->name ?>
</div>
</div>