Twig Templates & Custom Data
A
Main Template
0.00 ms
Total Render Time
0 KB
Memory Usage
0
Templates
0
Blocks
Rendered Templates
No template information available. Make sure Twig Profiler is enabled.
Custom Controller Data
No custom data. Use ToolbarDataBag in your controller to pass data.
Usage example
public function index(ToolbarDataBag $toolbarData): Response
{
$toolbarData->set('message', 'My message');
$toolbarData->set('count', 42);
return $this->render('...');
}