We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think, that your helper lacks this invoke method.
/** * Grabs a param from route match by default. * * @param string $param * @param mixed $default * @return mixed */ public function __invoke($param = null, $default = null) { if ($param === null) { return $this; } return $this->fromRoute($param, $default); }
The text was updated successfully, but these errors were encountered:
Yes this feature would be nice to have. To get default from route, that way it would be little bit easier to write/read code in views...
Are you interested to contribute? :)
Sorry, something went wrong.
No branches or pull requests
I think, that your helper lacks this invoke method.
The text was updated successfully, but these errors were encountered: