Laminas View Helpers Lists and Doc

Hello everyone, am new to using laminas.
I saw in the skeleton application view layout file some helpers like:

$this->headTitle('Laminas MVC Skeleton');
$this->headScript()

Is there a place I could see all this helpers and their use case/documentation?

Is there a place I could see all this helpers and their use case/documentation?

Please look at the documentation of laminas-view, there you can find the view helpers:

https://docs.laminas.dev/laminas-view/helpers/intro/

For auto-completion in your IDE add this line at the top of your template files:

/**
 * @var Laminas\View\Renderer\PhpRenderer $this
 */
1 Like