Skip to content

Commit

Permalink
Merge pull request #10 from pxlrbt/fix/naming-collission
Browse files Browse the repository at this point in the history
fix: Name collision with Filament v2.12
  • Loading branch information
pxlrbt authored May 10, 2022
2 parents f1f4f24 + 8eabdee commit 58d6e44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Concerns/Except.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

trait Except
{
protected ?array $except = null;
protected ?array $exceptColumns = null;

public function except(array|string $columns): self
{
$this->except = is_array($columns) ? $columns : func_get_args();
$this->exceptColumns = is_array($columns) ? $columns : func_get_args();

return $this;
}

public function getExcept(): ?array
{
return $this->except;
return $this->exceptColumns;
}
}

0 comments on commit 58d6e44

Please sign in to comment.