tagin icon indicating copy to clipboard operation
tagin copied to clipboard

Value always null

Open isaacdarcilla opened this issue 3 years ago • 0 comments

I have a Laravel Livewire input

<div class="col-sm-9">
      <input wire:model="school_official_telephone_number" value="{{ $school_official_telephone_number }}" class="form-control tagin" type="text" data-placeholder="Add...">
      @error('school_official_telephone_number') <span class="text-danger f-12 mt-1">{{ $message }}</span> @enderror
</div>

But when I click submit, the value was not recognized.

image

dd($this->school_official_telephone_number);

//results to `null`

image

Any help is much appreciated.

isaacdarcilla avatar Jun 22 '21 00:06 isaacdarcilla