212,722 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
36
views
Nginx on Windows: "host not found in upstream ‘php-fpm:9000’" when using php-cgi.exe [closed]
I just installed the nginx and I set up conf like this:
events {
worker_connections 768;
}
http {
upstream php {
server php-fpm:9000;
}
sendfile on;
tcp_nopush on;
...
-1
votes
0
answers
46
views
How to stop page loading in laravel/inertia app? [closed]
I'm coding a laravel app with using inertia as frontend. It's supposed to be a SPA, but moving between pages make each page to load (there is a blue loading progrss bar at the top of each page).
I ...
0
votes
0
answers
25
views
How can I access the APP_URL value from the .env file inside a script.js file in a Laravel project? [duplicate]
I have a Laravel project where I need to use the APP_URL (from the .env file) inside my JavaScript file (script.js).
For example, I want to make an API call like this:
fetch(`${APP_URL}/api/users`)
...
0
votes
0
answers
28
views
Laravel 12 public and private key VAPID OpenSSl error
I'm trying to implement notifications on my system (with Laravel 12 and PHP 8.3.16) using composer require laravel-notification-channels/webpush. Everything installs correctly, but when running php ...
0
votes
1
answer
24
views
Double scrollbars and mysterious white space at the bottom of the page with flex-col layout
I've been creating a layout in Laravel, Blade, and Tailwind CSS that seems pretty basic; I want a sidebar on the left side and a main content column that scrolls vertically if there's overflow. The ...
0
votes
1
answer
20
views
Page break for the SnappyPdf [closed]
image description here
I used SnappyPDF in Laravel to create a PDF, but I'm not getting automatic page breaks. Has anyone encountered this and found a fix?
I've added this CSS, but it's still not ...
0
votes
1
answer
23
views
How to automatically update filament RepeatableEntry after form save
In filament v3, after creating a new message, repeatable entry would automatically update but this is not the case in filament v4. How do I achieve the same behaviour in filament v4.
In filament v4 I ...
0
votes
0
answers
33
views
Connect laravel to highlight.io [closed]
I'm trying to connect my laravel app to highlight.io, so far i'm using opentelemetry with keepsuit/laravel-opentelemetry and it's working. But the problem is that not all services connected.
My setup ...
-3
votes
0
answers
52
views
I am getting 403 error after sometime on form update request in laravel [closed]
I have 10 businesses and each business has one logo. Problems occur in the steps:
Business 1
I am open business 1 for edit
upload logo
click on submit button
success
Business 2
I am open business 2 ...
1
vote
1
answer
49
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
32
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: ...
-3
votes
0
answers
43
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 ...
-3
votes
0
answers
16
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>
<...
2
votes
1
answer
85
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
42
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 ...