b2in/resources/views/livewire/notifications.blade.php
2025-10-20 17:50:35 +02:00

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>