mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-02-12 18:11:52 +00:00
15 lines
230 B
PHP
15 lines
230 B
PHP
|
<?php
|
||
|
namespace app\controllers;
|
||
|
|
||
|
use yii\web\Controller;
|
||
|
|
||
|
class PackagesController extends Controller {
|
||
|
|
||
|
public function actionIndex() {
|
||
|
return $this->render("index");
|
||
|
}
|
||
|
|
||
|
public function actionBuy() {
|
||
|
|
||
|
}
|
||
|
}
|