skip to Main Content

Laravel – Undefined variable $tag?

I started to learn Laravel a couple a days ago but I have error in code somewhere where it says that $tag variable is undefined, my Blade template is below: @props(['tag','size'=>'base']) @php $classes = "bg-white/10 hover:bg-white/25 rounded-xl font-bold transition-colors duration-300";…

VIEW QUESTION

Laravel – How to use button as Livewire toggler

Blade for livewire component: <div> <input type="checkbox" class="form-checkbox" wire:model="collapsed" wire:click="toggleCollapsed"> @if ($collapsed) show icon for collapsed state @else show icon for expanded state @endif </div> Works as expected - $collapsed changed because of checkbox, appropriate icon shown. But usage of…

VIEW QUESTION
Back To Top
Search