__('Result 1'), '2' => __('Result 2')]; } public function getFindtimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['findtime']) ? $data['findtime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getFinishtimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['finishtime']) ? $data['finishtime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getResultTextAttr($value, $data) { $value = $value ? $value : (isset($data['result']) ? $data['result'] : ''); $list = $this->getResultList(); return isset($list[$value]) ? $list[$value] : ''; } protected function setFindtimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } protected function setFinishtimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } public function company() { return $this->belongsTo('Company', 'company_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function usercompany() { return $this->belongsTo('Usercompany', 'uc_id', 'id', [], 'LEFT')->setEagerlyType(0); } }