212,719 questions
1
vote
1
answer
23
views
Sweetalert2 is not being shown
I'm using Laravel 12 and Livewire 3, and now I'm trying to use sweetalert2 in component file.
Here is what I've already done:
install sweetalert2 :
npm install sweetalert2
in resources\js\app.js :
...
0
votes
0
answers
23
views
Laravel + RoadRunner + SQS — API workers blocked while publishing to SQS (70ms latency per request)
I’m running a high-concurrency Laravel application on an EC2 instance using RoadRunner (12 PHP workers).
Each incoming request simply publishes a message to AWS SQS — that’s all it does.
The problem: ...
-2
votes
0
answers
22
views
Handling table headings neatly in Filament tables on mobile with Split layout [closed]
I’m using FilamentPHP tables with headings in a Split layout to make my tables responsive. On desktop, everything looks great, but when the layout stacks on mobile, the headings make the table look ...
-2
votes
0
answers
12
views
Select within Sheet (shadcn/Radix) causes aria-hidden focus conflict [closed]
I use Laravel with React and Shadcn components for my project.
This is my code plain and simple:
<Sheet>
<SheetTrigger>Open</SheetTrigger>
<SheetContent>
<...
-8
votes
0
answers
22
views
my laravel newspaper website news link preview image is not showing in whatsapp [closed]
in my laravel newspaper website , when I am sharing the news link in the whatsapp, news image is not showing in preview with the link. I use OG: graph. I dont know what is the problem
i try the og ...
2
votes
1
answer
72
views
Custom File upload Component in Livewire Laravel
I am trying to create a reusable Livewire input-file component, Such that :
Easy embed in any (parent) and pass the model name (ex = "file1")
How to store() the file is in control of (...
-3
votes
0
answers
36
views
How to display Laravel validation errors in a Vue form using Axios? [closed]
estoy trabajando en una aplicación fullstack con Laravel 10 (API) y Vue 3 como frontend. Estoy utilizando axios para enviar formularios desde Vue hacia el backend. Laravel valida correctamente los ...
0
votes
1
answer
51
views
WalletPass Notification API Returns 200 but No Push Notification Received
Problem:
When using the WalletPass Notification API to push updates to a pass, the API returns a 200 OK response, indicating success. However, no push notification is actually delivered to the ...
1
vote
1
answer
56
views
::whereUuid() is not defined in laravel php [closed]
I am trying to get the order that has the client and service as a foreignkey with whereUuid with this line of code:
$order = Order::whereUuid($order_id)->with(['client', 'service'])->first();
...
0
votes
1
answer
59
views
What is the correct context to consume a RabbitMQ broker within the PHP/laravel ecosystem?
We have a system that captures telemetry data in real time. The broker we hire sends telemetry data in real time from the device they place inside our cars. This operation has been running for two ...
0
votes
0
answers
53
views
How to change model to export from filament resource to exporter class
I have an application that uses filament 3.2 and in this application I have a resource called "Students", within this resource I am calling a "Tables\Actions\ExportBulkAction" that ...
1
vote
1
answer
35
views
Why is Laravel Clockwork taking up so much space, and can I safely flush it?
In my local development environment for a Laravel project I have had Clockwork installed for a few years, and after an unrelated permissions issue recently noticed that the Clockwork folder is taking ...
0
votes
0
answers
29
views
The blade not calling a function in the component
I hava a modal within a blade view(criteria.blade.php and i want this modal when triggered and filled to call the function with a component(Criteria.php) which sends data to the database but the ...
0
votes
0
answers
22
views
Sweetalert2 does not show up in Laravel 12 - Livewire
I'm using Laravel 12 and Livewire 3, and now i'm trying to use sweetalert2 in component file.
These are what I already do :
install sweetalert2 : npm install sweetalert2
in resources\js\app.js : ...
0
votes
1
answer
33
views
Single Sign On - Laravel Passport
I have multiple Laravel Apps all with their own user tables and roles tables. I want to implement single sign on so a user can sign in once and then access all the apps without signing in again. I ...