11 lines
208 B
PHP
11 lines
208 B
PHP
<?php
|
|
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component {
|
|
public bool $notifications = false;
|
|
}; ?>
|
|
|
|
<div>
|
|
<flux:switch wire:model.live="notifications" label="Enable notifications" />
|
|
</div>
|