Yii2 Bootstrap 3

14 lines
172 B

<?php
use yii\web\Controller;
class SiteController extends Controller
{
public $defaultAction = 'hello';
public function actionHello()
{
return 'hello world';
}
}