All Questions
128 questions
0
votes
4
answers
51
views
Livewire 3.6.10 with Laravel 11: wire:model not binding input value after page refresh
I'm working with Laravel 11, Livewire 3.6.10, and Alpine.js (properly configured). I'm encountering an issue where wire:model doesn't bind the value to an input field after a page refresh, even though ...
0
votes
0
answers
58
views
Livewire component deep inside @foreach gets uncaught (in promise) Component not found
Livewire version
v3.6.2
Laravel version
v11.44.2
PHP version
PHP 8.3
What is the problem?
I have nested livewire components in the following way (I am not sure if this information is relevant)
...
0
votes
0
answers
71
views
display livewire validation errors in alpine js x-for template
I have a Laravel 10, Livewire 3, Alpine JS application. On one of the blade files, I use the alpine x-for to loop through and add an input for each entry. I need to validate each input on change. I'm ...
0
votes
1
answer
128
views
Livewire wire:click Not Working Inside Alpine.js x-data Directive
I'm encountering an issue where Livewire's wire:click method doesn't work inside an Alpine.js x-data directive. Here's a breakdown of my setup:
Inside routes/web.php,
Route::get('/product/{slug}', [...
1
vote
0
answers
37
views
Livewire DataTable: `$this->data` is cleared during `dehydrating`, causing table rows to disappear
I’m working with a modular Livewire component structure that involves a base component (BaseTable.php) and child components. The BaseTable is designed to handle reusable table functionality and render ...
2
votes
2
answers
365
views
Buttons not showing in Livewire Powergrid [Alpine Expression Error: 'variable' is not defined]
I installed livewire-powergridin my project. So far everything works well except the header and action buttons.
I am getting an undefined where the button is supposed to be rendered.
Also. In my ...
-2
votes
2
answers
107
views
Opening a modal in livewire - laravel
I am designing a login form. when the user clicks on login button a modal should popup.
I have used livewire emitsTo event.
<button wire:click="$emitTo('login','loginModalOpen')" class=&...
2
votes
1
answer
972
views
Laravel Filament V3 causes Action components on ViewResource to be disabled on polling
As the title suggests I have an application that receives a huge amount of data that gets updated aproximately 3-5 times every second for each record in the database. It is required that my ...
0
votes
0
answers
209
views
alpine Warning: found "[x-sort]", but missing sort plugin
I am building a dynamic form filter using Filament, and need sort for drag and drop static elements to the form.
Now, I know alpine and livewire comes inbuilt with filament, but when i run
consele.log(...
0
votes
2
answers
91
views
How to view and watch an image with Laravel Livewire
I am trying to recreate a reusable blade component that will allow me to view and upload images for all my forms. The value in the livewire component could be a string of a previously uploaded image ...
0
votes
1
answer
758
views
Alpine Expression Error: error is not defined
Project with TALL (Tailwind, Alpine, Laravel, Livewire) Stack and Filament
I got in local/dev mode the follwing warning (in prod it does not happens, so it maybe has todo with some dev-packages?):
...
0
votes
1
answer
61
views
Tinymce and laravel when submit form the textarea turn back to normal textarea
when submit form in livewire the editor disappers and turn back to text area
body
<textarea class="form-control" wire:model='body' id="body">{{ old('body') }}</...
0
votes
0
answers
90
views
Unable to add emojis in quill RTE
I am using quill as my RTE in laravel/livewire app. Here is some of my code
I have installed quill-emoji using npm
My view file that loads the quill
<div class="w-full"
wire:ignore
...
0
votes
0
answers
70
views
Livewire: Use Child Component Form on Modal
I'm building a modal that can have multiple forms, depending on the number of sets. This is the structure.
workouts.edit-logger.blade.php
<div>
<x-card title="{{ $planner->...
0
votes
2
answers
659
views
How to dispatch function in x-data alpine from livewire 3
I would like to call a function called "syncBudget"
<div wire:key="extendForm" class="card p-3 border-0 shadow-sm space-y-3" x-data="() => {
return {
...