11 lines
193 B
PHP
11 lines
193 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
use app\common\controller\Backend;
|
|
class Development extends Backend
|
|
{
|
|
public function getdetails()
|
|
{
|
|
return $this->view->fetch();
|
|
}
|
|
} |