Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
59 views

I have this component called beat-player, on the PHP code I receive a dispatched event from another component and it works: <?php namespace App\Livewire; use Livewire\Component; use Livewire\...
cromestant's user avatar
0 votes
1 answer
226 views

I'm working on a Laravel/Filament application where I need to broadcast events from a queued job to update a Filament RelationManager's state. Setup I have a queued job that generates an analysis for ...
Halnex's user avatar
  • 4,597
0 votes
0 answers
69 views

I am using Laravel 11 (With laravel Breeze) and Livewire 3. I have a livewire component to edit users. This component shows a Edit/Show page with the possibility of modify your user. The problem here ...
Genaut's user avatar
  • 1,862
0 votes
1 answer
137 views

I have a Laravel component for a date range picker. The problem is that when I select the date range, the Livewire model cannot seem to register it, and it does not update the model value. I don't ...
Abdullah's user avatar
  • 345
0 votes
1 answer
210 views

I am trying to make a component to show a userProfile with "Show mode" and "Edit Mode". Initially you enter in "Show Mode" and see -Edit- and -Back- buttons. If you click ...
Genaut's user avatar
  • 1,862
0 votes
1 answer
99 views

Yet another post for an event not working, but have read through the docs and cannot make sense as I'm right now just trying to replicate the basic example. I have 3 components: Parent: Beat-create it ...
cromestant's user avatar
2 votes
0 answers
137 views

I'm having problems with a livewire component. There is html in the wire:snapshot attribute it is supposed to contain just json: <ul wire:snapshot="{&quot;data&quot;:{&quot;...
TheBee's user avatar
  • 41
0 votes
0 answers
266 views

Filament login not working in staging/production. I'm setting up my site on a Linux staging server, but filament is not working as expected. Whenever I try to login, not only the password is not ...
Giulia Volpe's user avatar
0 votes
2 answers
398 views

my blade file <form class="new-chat-form border-gradient" wire:submit.prevent="sendMessage" enctype="multipart/form-data"> <textarea wire:model="...
Sameed Ediz's user avatar
0 votes
0 answers
57 views

I'm trying to run a client javascript function when a form element gets updated by wire:model changes on the client side. I know Livewire doesn't trigger a change event, but I've read that input and ...
shane's user avatar
  • 109
0 votes
2 answers
48 views

I use select2 to style selects. But in livewire I faced a problem that when I change the value it doesn't change even though the select is set to model <div class="select2-custom-field select2-...
Тарас Гаврилюк's user avatar
1 vote
0 answers
38 views

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 ...
Mks's user avatar
  • 61
4 votes
4 answers
1k views

I am using Laravel Livewire for navigation within my application. My default layout includes the following scripts: <div class="flex grow"> <x-layouts.sidebar /> &...
Muhammad Umar's user avatar
0 votes
0 answers
39 views

I am trying to populate an FAQs section with a UI that hides and shows the answers depending on when the user clicks to view the answer, but for some reasons the answers still shows without clicking ...
tesseract's user avatar
  • 149
0 votes
1 answer
392 views

I can't seem to get my LikeCounter livewire component to be able to refresh after i clicked a button that triggers a wire:click event. My LikeCounter Livewire component: class LikeCounter extends ...
jakesnowdrop's user avatar
0 votes
1 answer
183 views

I'm tring to update my chart with new data. But whenever I call update functions I get error: Maximum call stack size exceeded. <div x-data="chartComponent()" class="max-w-xl mx-...
zhovtyj's user avatar
  • 61
1 vote
0 answers
80 views

I am using Laravel 11 and created a livewire InvoiceDetail from detail blade which is accessible through /invooice/{id} route It contains an individual Invoice id but shows list of all invoices for ...
Tulsi Acharya's user avatar
-1 votes
1 answer
153 views

I'm using Laravel Livewire with PowerGrid v2.x and have a query that joins multiple tables to display transaction data. Both transactions and invoices tables contain a transaction_type column, which ...
user1527237's user avatar
0 votes
1 answer
64 views

I have such a component. The payment button is not active until the user selects a payment option and method return-ad.blade.php @php use App\Models\UserLimit; @endphp <div> @if ($template ==...
Тарас Гаврилюк's user avatar
0 votes
0 answers
203 views

Always undefined variable in $component, however not always in the /vendor/filament/notifications/resources/views/notifications.blade.php view (although lately has been). I understand this seems to be ...
Jonathan Bird's user avatar
0 votes
1 answer
113 views

Please i need help, i don't know what i am doing wrong. Accessing the API works through postman but not working in my laravel application. //........... Client error: `POST https://remitademo.net/...
Abenslive's user avatar
0 votes
1 answer
324 views

I'm working on project and it requires a location field with custom implementation of Google Maps autocomplete. I need it to only return [City, State] (eg. Cleveland, Ohio) or [Neighborhood, City, ...
Yev's user avatar
  • 2,081
-1 votes
1 answer
145 views

i have livewire component where i have this filament form class Categories extends Component implements HasForms, HasTable { use InteractsWithForms; use InteractsWithTable; public $customFields; ...
Rana Abdul Rauf's user avatar
1 vote
0 answers
347 views

I got : livewire.js?id=38dc8241:4284 POST http://localhost:8000/livewire/update 404 (Not Found) Everytime the wire:poll is triggered. (and the render function is not called, except for the first ...
Jean François Manatane's user avatar
2 votes
2 answers
594 views

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 ...
Indeche Ojukwu's user avatar
1 vote
0 answers
28 views

I'm a beginner in Livewire, need to display one of the templates (the first with a Resend button if $waitTime <=0 and the second if $waitTime >0) according to server event updateWaitTime . In ...
Eli Volowelsky's user avatar
0 votes
2 answers
130 views

I have set up a very simple project as I want to pass livewire an id and it to return some data from a table with that ID. My basic page includes @livewire('ShowData',['id' => 4]) I have a ...
Jim's user avatar
  • 63
0 votes
1 answer
191 views

I'd be happy to post some or all of my code, but for starters, here is the upshot. I have a Livewire view with Livewire components that are paginated. These items may also be filtered. However, any ...
dgo's user avatar
  • 3,987
1 vote
0 answers
100 views

Livewire 3x. I have a Livewire component OpportunityQuote that has a Repeater in its structure, like this: class OpportunityQuote extends Component implements HasForms { use InteractsWithForms, ...
José Victor's user avatar
1 vote
1 answer
107 views

I'm new to livewire. And I have Livewire component like below <label for="active">Active:</label> <input type="checkbox" id="active" wire:model.live="...
Petlya0000's user avatar
0 votes
1 answer
170 views

When nested boolean property values (e.g. nested.value) of a Livewire component change, checkboxes do not change their checked state. Here is a wirebox with the scenario: https://wirebox.app/b/x58lv ...
Christian Wagner's user avatar
-1 votes
1 answer
120 views

Needs to load livewire component on timeout Here is my livewire call code: <livewire:data-list data="{{$id}}"/> But i want to load this component after some time like seconds... Here ...
Payal Desai's user avatar
0 votes
1 answer
60 views

I have a livewire component thet loads a dynamic component based on a $step variable. The idea is to load one of three components based on the value of the variable. The variable is updated when the ...
Tales's user avatar
  • 1,923
-2 votes
1 answer
133 views

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=&...
mohammed asheek's user avatar
0 votes
1 answer
282 views

Livewire Version: 3.5.12 I’d like to share and discuss an approach for adding end-to-end payload encryption on top of HTTPS for a Laravel 11 application using Livewire v3. This setup adds an ...
Anil Kumar's user avatar
1 vote
1 answer
1k views

How can I modify the EditRecord code in my EditPermohonan class so that when the "Save" button is clicked, a modal appears to confirm the changes before actually saving? I want the modal to ...
Bhazk's user avatar
  • 231
0 votes
2 answers
2k views

In the function "add" at some point it throws and event to the component "shopping-cart". In the "shopping-cart" component, i want to refresh the component manually when ...
PRESTIGE2930's user avatar
0 votes
1 answer
264 views

How can I pass data from layout to component in livewire? I want to pass data from layout to $slot. My layout is: <!DOCTYPE html> <html> <head> <!-- Scripts --> @vite(['...
Mireli Eyyubzade's user avatar
1 vote
1 answer
74 views

I am working on a survey builder where I let the user add different questions based on the field they select. For the question field, I want to use CKEditor. <div> @if($isOpen) <div class=...
Mohit Jalmi's user avatar
2 votes
2 answers
720 views

I use Tenancy for Laravel (v3) and Filament (v3) to create a multi-tenancy application. I have a decent amount of applications working well using different domains for the various applications. ...
Mahdi Sahib's user avatar
1 vote
2 answers
574 views

I’m encountering an issue with Laravel and Livewire when deploying my application on an Apache server. The problem arises when the application is hosted in a subfolder (e.g., domain.com/folder_app). ...
Rubén Ruíz's user avatar
0 votes
1 answer
77 views

I have the following component <div> <div x-data="{ value: 0 }" x-modelable="value" wire:model.live="counter" x-init="...
Adam Lambert's user avatar
  • 1,431
0 votes
0 answers
113 views

I am currently facing a BIN attack on the checkout page of my web application, which is built using Laravel and Livewire. Fraudulent users (or bots) are attempting to perform card testing by using a ...
inżynier umair's user avatar
2 votes
1 answer
1k views

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 ...
furyozo's user avatar
  • 628
0 votes
1 answer
141 views

I am using livewire modal from this repo: https://github.com/wire-elements/modal So, I create an edit modal where it can also delete the item. Here is the modal look like There are delete button. ...
Bobby's user avatar
  • 87
0 votes
1 answer
194 views

I have been using Livewire v3 for a while and often use... <button x-on:click="$wire.set('title', 'A New Title')"> ... to set Livewire properties directly from Alpine. This all works ...
Adam Lambert's user avatar
  • 1,431
0 votes
1 answer
133 views

commerce app in laravel livewire3, cart component data not updating after perform any action like updateQty, removeItem etc. I want to auto update cart itmes values after perform any action. Cart.php ...
shazim ali's user avatar
0 votes
2 answers
278 views

this is the URL defined to return after successful payment: "returnURL" => 'https://wearlarimo.com/success/' . $this->order->id and this is the route to get the Success page of ...
Mehdi Yaghoubi's user avatar
1 vote
2 answers
690 views

This my error I'm still a beginner in creating Laravel Livewire applications, how to make CSP allow livewire.js When I don't use Content Security Policy Livewire runs fine, after I use Content ...
user27866443's user avatar
-1 votes
2 answers
214 views

When i have a mini multistep form the radio button value of step 2 is overwriting the value of step 1. See code below. The component <?php // app/Livewire/Counter.php namespace App\Livewire; use ...
Akif's user avatar
  • 482

1 2 3
4
5
54