Thorm
Get started
Get Started in 5 minutes
First Page
Your first page
The controller
Header
Hero section
Contact section
The API
Considerations
Docs
Overview
Guides
Intro
Atoms
Node builders
Props helpers
State + expressions
Expression builder
Events + actions
Effects + targets
API
Api
Examples
Roadmap
Blog
Community
Get Started
GitHub
Toggle
Show and hide content by toggling simple state.
Toggle Panel (MVP)
Toggle
PHP
📄 Copy code
<?php $open = state(0); div([ cls('container my-5') ], [ h2([], [ text('Toggle Panel (MVP)') ]), button([ cls('btn btn-danger'), on('click', inc($open, 1)) ], [ text('Toggle') ]), show(eq(mod(read($open), 2), 1), el('div', [ cls('border p-3 rounded text-bg-primary my-5') ] ])