| Current Path : /var/www/html/caknatani/backend/modules/moduleRepository/views/solution-list/ |
| Current File : /var/www/html/caknatani/backend/modules/moduleRepository/views/solution-list/view.php |
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model backend\modules\moduleRepository\models\SolutionList */
$this->title = $model->module_id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Solution Lists'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this);
?>
<div class="solution-list-view">
<h1><?= Html::encode($this->title) ?></h1>
<p>
<?= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->module_id], ['class' => 'btn btn-primary']) ?>
<?= Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->module_id], [
'class' => 'btn btn-danger',
'data' => [
'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
'method' => 'post',
],
]) ?>
</p>
<?= DetailView::widget([
'model' => $model,
'attributes' => [
'module_id',
'module_name',
'module_image',
'module_description:ntext',
'module_feature:ntext',
'module_instruction:ntext',
'module_developer',
'module_compatible',
'module_related:ntext',
'module_category',
'created_at',
'created_by',
'updated_at',
'updated_by',
],
]) ?>
</div>