skip to Main Content

Laravel Blade @props default not over ridden

I just started learning Laravel & Blade. I am having problem with components File: header.blade.php <header class="bg-blue-900 text-white p-4"> <div class="container mx-auto flex justify-between items-center"> <h1 class="text-3xl font-semibold"> <a href="{{ url('/') }}">Workopia</a> </h1> <nav class="hidden md:flex items-center space-x-4"> <x-nav-link url="/"…

VIEW QUESTION

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