If a blade component has a boolean property, you can use a boolean attribute in the XML. For example:
class Toggle extends Component
{
public function __construct(bool $toggled = false)
{
// ...
}
}
Right now PhpStorm will autocomplete the property expecting a value:
Is it possible to not autocomplete the ="" when the prop is a boolean?