Relative Content

Tag Archive for laravel-livewire

Why calling component method array with data becomes empty?

In laravel 11 / livewire 3 app in Dashboard component in $newsGroupedByNewsCategoryList array
I save groupped data which are read from db and show them in blade file. It works ok, but
now I want with any category group to add button,
clicking on it last 5 news of this group woul be shown below ths button. When I click on this button $newsGroupedByNewsCategoryList array is cleared and I do not understand why?

How to render Title attribute dynamically in Livewire

Below is my ShowPost component and I’d like the Title attribute to be dynamic depending on the post title instead of hard coding 'Laravel Roadmap'. Passing 'title' => $post->title in the blade template it doesn’t work too. How can I make this dynamic?