<?php 
 
use yii\helpers\Html; 
use yii\widgets\DetailView; 
 
/* @var $this yii\web\View */ 
/* @var $model daxslab\website\models\Website */ 
 
$this->title = $model->id; 
$this->params['breadcrumbs'][] = ['label' => Yii::t('website','Websites'), 'url' => ['index']]; 
$this->params['breadcrumbs'][] = $this->title; 
?> 
<div class="website-view"> 
 
    <h1><?= Html::encode($this->title) ?></h1> 
 
    <p> 
        <?= Html::a(Yii::t('website','Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> 
        <?= Html::a(Yii::t('website','Delete'), ['delete', 'id' => $model->id], [ 
            'class' => 'btn btn-danger', 
            'data' => [ 
                'confirm' => Yii::t('website','Are you sure you want to delete this item?'), 
                'method' => 'post', 
            ], 
        ]) ?> 
    </p> 
 
    <?= DetailView::widget([ 
        'model' => $model, 
        'attributes' => [ 
            'id', 
            'token', 
            'url:url', 
            'created_at', 
            'updated_at', 
            'created_by', 
            'updated_by', 
        ], 
    ]) ?> 
 
</div> 
 
 |