Printt.php 183 B

123456789101112131415
  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. }