for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NovaFlexibleContent\Layouts\LayoutTraits;
trait Collapsable
{
protected bool $collapsed = false;
public function setCollapsed(bool $collapsed = true): static
$this->collapsed = $collapsed;
return $this;
}
public function isCollapsed(): bool
return $this->collapsed;