Relative Content

Tag Archive for laravellaravel-livewirelivewire-3laravel-livewire-wiremodel

Livewire wire:model not working with arrays, value is okay but the select is not auto selected or binded

public bool $triggerModal = false; public $cols = []; public $selectedColumn = null; #[On(‘triggerModal’)] public function triggerModal(int $importFileId) { $this->selectedColumn = 3; $this->cols = [0,1,2,3,4,5]; $this->triggerModal = true; } <div> <label class=”block text-sm font-medium leading-6 text-gray-900″>Name</label> <select wire:model=’selectedColumn’> <option value=””>(Select Column)</option> @foreach ($cols as $col) <option value=”{{ $col }}”>{{ $col }}</option> @endforeach </select> </div> Name […]