示例#1
0
文件: Accessor.php 项目: larakit/lk
 function toArray()
 {
     $ret = [];
     foreach ($this->model->toArray() as $k => $v) {
         $ret[$k] = $this->get($k);
     }
     return $ret;
 }