$field->toBool()
Converts the field value into a proper boolean
$field->toBool(bool $default = false): boolParameters
| Name | Type | Default | Description | 
|---|---|---|---|
| $default | bool | false | Default value if the field is empty | 
Return type
bool
Aliases
You can use the following aliases for this field method in your template:
- $field->bool(…)
Example
<?php if ($page->hasHeader()->toBool()): ?>
<header>
  <!-- Your code here -->
</header>
<?php endif ?>