view.php
509 Bytes
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model common\models\Stone */
$this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Услуги', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="events-one-item">
<h1><?= $model->name?></h1>
<?= Html::img($model->minImg($model->image, '940','480')) ?>
<div class="content-last-block-text-wrap">
<?= $model->body?>
</div>
</div>