index.php
556 Bytes
<?php
/* @var $this yii\web\View */
use artweb\artbox\core\helpers\ImageHelper;
use artweb\artbox\gentelella\widgets\XPanel;
$this->title = 'My Yii Application';
?>
<?php
$panel = XPanel::begin(
[
'title' => 'Test',
'toolbarLayout' => '{close}{collapse}',
]
);
echo "Velox nuclear vexatum iaceres ducunt ad eleates.";
$panel::end();
return ImageHelper::set('@storage/test.jpg')
->resize(150, 150)
->done();