All Questions
Tagged with laravel laravel-livewire
2,133 questions
1
vote
0
answers
23
views
How to Use Laravel Reverb with the Livewire Starter Kit in Laravel 12?
I'm trying to use Laravel Reverb in a Laravel 12 application. I've gone through several tutorials and documentation, but almost all of them implement authentication using Laravel Breeze. However, with ...
0
votes
0
answers
16
views
Laravel Livewire Starter Kit not receiving a Laravel notification broadcast via echo
I have the folllowing noitification:
<?php
namespace App\Notifications;
use App\Models\Comment;
use App\Models\Ticket;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Bus\Queueable;
...
0
votes
4
answers
50
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
37
views
Why is Livewire throwing 404 depending on call to retrieve article from DB?
I'm using Laravel 12 and Livewire 3 and have a very particular problem.
On individual article pages, when interacting with a Livewire component, I get a 404 error for /livewire/update if in the model'...
0
votes
0
answers
23
views
How to find and remove injected script on Filament login page?
Someone injected an online gambling web script into my Filament website. I saw they inserted scripts in root, public, storage, and vendor folders. I have found some scripts, but there are still ...
0
votes
1
answer
42
views
Livewire 3.6.10 with Laravel 11 – wire:click, wire:submit, and wire:model not working
I'm using Laravel 11 with Livewire 3.6.10 and have Alpine.js properly configured. I'm facing an issue where Livewire actions such as wire:click, wire:submit, and wire:model are not working as expected ...
0
votes
0
answers
37
views
Filament 3 FileUpload rendered incorrect on
image of fileupload in local version
image of file upload in production version
i have problems with FileUpload. it is rendered correctly while in local development, but not when deployed to ...
0
votes
0
answers
31
views
Connection error when retrieve files on S3 disk (MinIO) using HTTPS domain
Issue description
I'm having a connection error when I trying to connect to a MinIO (S3) server over HTTPS, It just happens with HTTPS (using a domain name) because when I use HTTP (with IP address) ...
-1
votes
0
answers
37
views
Vite not loading properly for live server in Laravel
I have a Laravel + Livewire system, that I'm trying to build for deploy to live server.
I do npm run build and successfully.
The assets are loaded in a blade layout using the @vite directive:
@vite(['...
-3
votes
0
answers
35
views
How i can use livewire in two authorized?
I have two authorized access to laravel livewire 3, and all of them using livewire update and this is made error and one of another using it only
I'm using laravel 12 and livewire 3
i was triying to ...
0
votes
0
answers
51
views
Why am I getting 403 forbidden error on production not on local with Livewire component?
I'm using Laravel and Livewire 3
I have a search box component that works fine on my local but on the live server it works fine until I get the first product, after the subsequent requests, we get 403 ...
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
27
views
How to fix file upload in laravel livewire [duplicate]
I try to upload a file in laravel livewire but I faced some problems
this is my code the problem is the $logo can't hold the file like it initialize befor save it in store() method it work in other ...
1
vote
1
answer
58
views
Filamentphp Form wizard on livewire component not using @filamentStyles or @filamentScripts
I'm able to create a Filamentphp form on a livewire component to display it on a public page. However it's not using the filament styles.
Here is my livewire component
<?php
namespace App\...
0
votes
0
answers
34
views
How to avoid issues with step updates in upsertGroupedSteps caused by array reindexing when using dynamic fields? Livewire 3
I have a dynamic form fields logic in my Livewire 3 class:
public properties:
public $steps = [
['image' => null, 'text' => null],
];
public $step = ['image' => null, 'text' => null];
...