213,080 questions
1
vote
0
answers
12
views
Problem with request in my react native app
I'm the newbie here and newbie in React and laravel (computer science student)
I have problem with react native app.
I have backend with api on WSL with Laravel.React native app on Windows 11.
Problem ...
1
vote
0
answers
6
views
Laravel's ORM query using with() not working with paginate()
I am grabbing the related meetings with each Department, hence I would like to have a pagination for each meetings list. I currently have this in my Inertia Middleware to have it available in my ...
-3
votes
0
answers
19
views
AWS- EC2 instance key pairs and ssh access issue - permission denied
I cant seem to get over this problem. I've tried new key pairs. Below is the response i'm getting. I've checked the other posts with similar issues, nothing has worked so far.
My app is also down. ...
0
votes
0
answers
16
views
Calendar Events Not Reaching Laravel Controller or Database
I'm trying to save events created in a Calendar to my database using Laravel. I have a route, controller, and AJAX request set up, but the event data doesn't seem to be reaching the controller or ...
0
votes
0
answers
5
views
Laravel 11 with vite: Production net::ERR_ABORTED 404 (Not Found)
I got a net::ERR_ABORTED 404 (Not Found) error when deploying to the server.
I have 2 servers, one has a public IP and a subdomain from my internet provider, and one is a local server for development ...
0
votes
0
answers
14
views
Why phpstan returns an error for a basic view?
I am using larastan 3.0 with laravel. The level is 9.
In this code :
return view('auth.change-password', [
'user' => $user,
]);
I have this error :
Parameter #1 $view of function view ...
0
votes
0
answers
20
views
How can disable CSRF for some individual pages in Laravel 11
I'm using Laravel 11.3 to receive events from Issabel. When I sending data Via Curl in an Eventhandeler PHP AMI file from Issabel, it shows HTTP Code 419 as server respond. ChatGPT told me some ...
-3
votes
0
answers
35
views
Laravel responsive admin dashboard with sidebar navigation using Bootstrap [closed]
I am using HTML, CSS, Bootstrap and want to create a dashboard with a sidebar navigation in my web app.
Using navbar-brand navbar navbar-expand-md navbar-light bg-white shadow-sm bootstrap classes but ...
0
votes
0
answers
20
views
How to Generate Refresh Token in Laravel 11 Passport?
public function login(Request $request)
{
// Validate the input
$validator = Validator::make($request->all(), [
"email" => "required|email",
"...
0
votes
3
answers
53
views
how to update one column by adding interval to another column
I have been trying to update one column in a table by adding a 5 YEAR interval to another column, and always get syntax error exception. The following is my PHP script:
\App\Models\MyModel::where('cl1'...
0
votes
0
answers
19
views
How to preserve scroll in vue form with inertia
How do I get preservescroll working on a form? It works for the delete functionality with the Link but I can't get it to work on the form or the div.
<template>
<form @submit.prevent=&...
0
votes
1
answer
34
views
Laravel customize all exceptions thrown
Im trying to make a little change in exception log and render in laravel 11.
I want to add an uuid to the errors.500 blade and log it right before the log, but i really dont know how to, laravel docs ...
0
votes
0
answers
40
views
Why does my grouped array sometimes generate incorrect data for specific fields inside Foreach?
I have a Laravel function that processes an array of delivery items and groups them by DeliveryID to create a structured array of deliveries. Each delivery includes details such as items, subtotal, ...
-1
votes
0
answers
16
views
Laravel in how we can upload large size video with Repeater data with multi language
In the Laravel how we can upload large size data with multiple language video as well once video upload i need it on chunk how we can do ?
Here is DB structure
once specific program upload chunk data ...
2
votes
0
answers
41
views
How to Properly Inject Service Account Credentials in Google Cloud Build for Cloud Run Deployment?
I’m deploying a Laravel application to Google Cloud Run using Google Cloud Build. During the Docker build process, I need to access Google Secret Manager to inject secrets into the application code ...