Skip to content

Commit

Permalink
fix: patch up model query issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Dec 30, 2024
1 parent 72a0783 commit 85ae013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ public function __set($name, $value)

public function __call($name, $arguments)
{
return $this->get()->$name(...$arguments);
return $this->table()->$name(...$arguments);
}
}

0 comments on commit 85ae013

Please sign in to comment.