__('Status 0'), '1' => __('Status 1'), '2' => __('Status 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 getTypeList() { return ['photo_images' => __('Type photo_images'), 'avatar' => __('Type avatar'), 'audio_bio' => __('Type audio_bio'), 'video_bio' => __('Type video_bio')]; } public function getGenderList() { return ['-1' => __('User.Gender -1'),'1' => __('User.Gender 1'), '0' => __('User.Gender 0')]; } public function getGenderTextAttr($value, $data) { $value = $value ? $value : (isset($data['gender']) ? $data['gender'] : ''); $list = $this->getGenderList(); return isset($list[$value]) ? $list[$value] : ''; } public function getTypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['type']) ? $data['type'] : ''); $list = $this->getTypeList(); 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; } 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); } }