column('id', '#ID#'); $this->column('name', '物流名称'); $this->column('status', '状态')->bool(); $this->column('created_at', '时间'); $this->filter(function (Filter $filter) { $filter->like('name', '物流名称'); }); } public static function display() { return function ($value) { if (is_array($value)) { return implode(';', array_column($value, 'name')); } return optional($this->expresses)->name; }; } }