We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A very simple helper holder in the wf() function.
wf()
In a package, you can register your helper with :
wf()->add('my_function', function() { // Do what you want to do here // IoC example : return app()->make('Path\To\MyService'); });
Anywhere you can run a registered helper :
wf()->view()->nest('view', 'other_view');