diff options
author | Sam Light <samlight1994@gmail.com> | 2025-10-16 01:42:45 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-10-16 01:42:45 +0100 |
commit | 6398b65538d6f089b051b466b66bfd227fe91c94 (patch) | |
tree | 3578c1e13e92f4d84f1a9009fee79c524368ad49 /src/Columns/Column.php | |
parent | 7a47bae6e469fd04d6a14bda1646f8317d8f3bb4 (diff) |
Diffstat (limited to 'src/Columns/Column.php')
-rw-r--r-- | src/Columns/Column.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |