entity->country ? $this->entity->country->name : ''; } public function status() { $class = $text = ''; if ($this->entity->is_deleted) { $class = 'danger'; $text = trans('texts.deleted'); } elseif ($this->entity->trashed()) { $class = 'warning'; $text = trans('texts.archived'); } else { $class = 'success'; $text = trans('texts.active'); } return "{$text}"; } public function url() { return URL::to('/clients/' . $this->entity->public_id); } public function link() { return link_to('/clients/' . $this->entity->public_id, $this->entity->getDisplayName()); } }