(int)$model->id, 'username' => $model->username, 'name' => $model->name, 'headimg' => $model->headimg, 'department_id' => $model->department_id, 'shop_id' => $model->shop_id, 'projects' => $model->projects, 'project_ids' => $model->project_ids, 'shop' => $model->shop ? $model->shop : [], 'department_name' => $model->department ? $model->department->name : '--', 'status' => $model->status, 'role_id' => $model->role_id, 'role_name' => $model->id == 1 ? '超级管理员' : ($model->role ? $model->role->name : '--'), 'created_at' => $model->created_at->format(Carbon::DEFAULT_TO_STRING_FORMAT), 'updated_at' => $model->updated_at->format(Carbon::DEFAULT_TO_STRING_FORMAT) ]; } }