Printt.php 182 B

1234567891011121314
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. class Printt extends Backend
  5. {
  6. public function index(){
  7. return $this->view->fetch();
  8. }
  9. }