__('Status 0'), '1' => __('Status 1'), '2' => __('Status 2')]; } public function getTypeList() { return ['1' => __('Type 1'), '2' => __('Type 2')]; } public function getStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['status']) ? $data['status'] : ''); $list = $this->getStatusList(); return isset($list[$value]) ? $list[$value] : ''; } public function getAudittimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['audittime']) ? $data['audittime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getTypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['type']) ? $data['type'] : ''); $list = $this->getTypeList(); return isset($list[$value]) ? $list[$value] : ''; } protected function setAudittimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } public function user() { return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function withdrawalconfig() { return $this->belongsTo('Withdrawalconfig', 'wallet_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function userto() { return $this->belongsTo('User', 'intro_uid', 'id', [], 'LEFT')->setEagerlyType(0); } }