Skip to content

Instantly share code, notes, and snippets.

View jojomak13's full-sized avatar
:electron:
Focusing

Joseph Makram jojomak13

:electron:
Focusing
View GitHub Profile
@jojomak13
jojomak13 / select2.blade.php
Last active April 13, 2024 22:05
select2 input with alpinejs and livewire
@props(['multiple' => false])
<div {{ $attributes }} wire:ignore x-data="{
value: @entangle($attributes->wire('model')),
init(){
let input = new TomSelect(this.$refs.select, {
onChange: (value) => this.value = value,
items: this.value
});
}