From 6398b65538d6f089b051b466b66bfd227fe91c94 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Thu, 16 Oct 2025 01:42:45 +0100 Subject: Made getContent public --- src/Columns/Column.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Columns/Column.php') diff --git a/src/Columns/Column.php b/src/Columns/Column.php index aa64ac5..9c9f9fe 100644 --- a/src/Columns/Column.php +++ b/src/Columns/Column.php @@ -140,7 +140,7 @@ class Column return $this->shouldEscape ? e($content) : $content; } - protected function getContent(Model $row): string + public function getContent(Model $row): string { $content = $this->slotFn === null ? $this->defaultSlot($row) : ($this->slotFn)($row, $this); -- cgit v1.2.3