| 1234567891011121314151617181920212223242526 |
- <?php
- namespace app\controllers;
- use Yii;
- use app\models\PayForm;
- class PayController extends \yii\web\Controller
- {
- public function actionIndex()
- {
- $model = new PayForm();
- if ($model->load(Yii::$app->request->post())) {
- Yii::$app->session->setFlash('success', 'This is the message');
- return $this->refresh();
- }
- $cc = $model->getAmount();
- return $this->render('index', [
- 'model' => $model,
- ]);
- }
- }
|