z-song/laravel-admin · error · Exception
Method "{$method}" not exists.
Error message
Method "{$method}" not exists. What it means
Error "Method "{$method}" not exists." thrown in z-song/laravel-admin.
Source
Thrown at src/Grid/Filter/AbstractFilter.php:539
{
return $this->render();
}
/**
* @param $method
* @param $params
*
* @throws \Exception
*
* @return mixed
*/
public function __call($method, $params)
{
if (method_exists($this->presenter, $method)) {
return $this->presenter()->{$method}(...$params);
}
throw new \Exception('Method "'.$method.'" not exists.');
}
}
View on GitHub (pinned to 67c441eb78)
When it happens
Trigger: Thrown at src/Grid/Filter/AbstractFilter.php:539 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of z-song/laravel-admin@67c441eb78 (2026-08-21).
Data as JSON: /api/errors/3e9a6f6bb37d9d1c.
Report an issue: GitHub.