call = $call; return $this; } public function display($style = 'primary', $max = null) { if (!$value = $this->value($max)) { return; } $original = $this->column->getOriginal(); $defaultStyle = is_array($style) ? ($style['default'] ?? 'default') : 'default'; $background = $this->formatStyle( is_array($style) ? (is_scalar($original) ? ($style[$original] ?? $defaultStyle) : current($style)) : $style ); return collect($value)->map(function ($name) use ($background) { return "$name"; })->implode(' '); } protected function formatStyle($style) { $background = 'style="background:#d2d6de;color: #555"'; if ($style !== 'default') { $style = Admin::color()->get($style, $style); $background = "style='background:{$style}'"; } return $background; } protected function value($max) { $values = Helper::array($this->value); if ($max && count($values) > $max) { $values = array_slice($values, 0, $max); $values[] = '...'; } return $values; } }