Mysql – save checkbox in db as 0 or 1 using livewire
I have difficulty how to save the checkboxes on to the database using livewire. view: <div class="mt-2"> <div class="flex items-center space-x-8 justify-center"> <label for="Email"> Email</label> <input type="checkbox" value="{{$notificationEmail}}" id="notification_email" wire:model="notificationEmail"> <label for="Phone"> Phone Number</label> <input type="checkbox" value="{{$notificationPhone}}" id="notification_phone" wire:model="notificationPhone"> <label…