Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
43 views

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 ...
Justin Russell's user avatar
0 votes
1 answer
65 views

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 ...
Michael Njuguna's user avatar
1 vote
1 answer
63 views

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 : ...
ronny hidajat's user avatar
0 votes
0 answers
66 views

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: ...
Alexis R's user avatar
  • 323
2 votes
1 answer
109 views

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 (...
Dr.coddy hanseling's user avatar
0 votes
1 answer
80 views

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 ...
Saif Hesham's user avatar
0 votes
1 answer
84 views

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 ...
laravel_'s user avatar
0 votes
1 answer
128 views

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 ...
juan's user avatar
  • 13
0 votes
1 answer
96 views

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 ...
Hashim Aziz's user avatar
  • 6,576
0 votes
1 answer
60 views

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 ...
Bobvin's user avatar
  • 21
-1 votes
0 answers
68 views

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 : ...
ronny hidajat's user avatar
0 votes
1 answer
62 views

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 ...
Finchy70's user avatar
  • 473
0 votes
1 answer
65 views

I’m using Inertia.js with Vue 3, and I want to show a success message when a form is submitted successfully. In my controller I have: public function store(Request $request) { $validated = $...
WILLIANS HERIBERTO NAVAS REYES's user avatar
0 votes
0 answers
68 views

I’m building a Laravel application that uses PayPal subscriptions. My app’s database and PayPal subscriptions are kept in sync, and users can manage their subscription from a dashboard. When a user ...
Obsidia's user avatar
  • 108
0 votes
0 answers
60 views

I'm using Laravel 12 along with Pest (using Mockery), and I have this method : public function destroy(array $ids): array { $data= Item::findAllByFieldIn('id', $ids)->get(); // ...
naspy971's user avatar
  • 1,411
0 votes
0 answers
64 views

I am having a problem with the remember me functionality in my app. When users log in they can check the box and it will work for a while but after a few hours/days (I haven't timed it exactly) they ...
JesperChops's user avatar
0 votes
0 answers
93 views

The Laravel project on production continues to show the error below intermittently: SQLSTATE[HY000] [1130] Host 'localhost' is not allowed to connect to this MariaDB server (Connection: mysql, SQL: ...
Harrison O's user avatar
  • 1,220
0 votes
0 answers
35 views

I’m building a Laravel + React (Inertia.js) application where users can upload files (PDFs, images, etc.). For each file, I generate a thumbnail so I can display it in a gallery card (CardFile.jsx). ...
Benkku's user avatar
  • 1
0 votes
1 answer
47 views

I have this issue: If I use relation with model Fotos in Model Order - I can't output image from relation model. (I.e. I tried using fotos.image in field text, field upload but image not indicated). I ...
Alex Cool's user avatar
1 vote
2 answers
135 views

I am running tenant new migration (orders_table migration) that live in database/migrations/tenant/ . Each tenant has its own database (tenant_1, tenant_2, tenant_3, ...) and there are some tables ...
Silikazi's user avatar
  • 480
0 votes
0 answers
69 views

I’m using Laravel 10 with Inertia.js and Vue 3. In my controller, I return a page like this: use Inertia\Inertia; use App\Models\User; public function dashboard() { $users = User::all(); ...
WILLIANS HERIBERTO NAVAS REYES's user avatar
-3 votes
1 answer
123 views

What I want to set up in .\routes\web.php is something like Route::resource('/main', CallController::class); So, if user goes to www.sitename.com/, the index of CallController should be executed and ...
Andrii's Quest's user avatar
0 votes
0 answers
77 views

I’m working locally with Laragon and multiple Laravel projects. The setup looks like this: Website A → its own .env (website-a.env), with DB website_a. Website B → its own .env (website-b.env), with ...
JJuless's user avatar
  • 147
0 votes
1 answer
125 views

I'm using the mongodb/laravel-mongodb package in a Laravel project and running into an issue with documents that have both _id and id fields. For example, a document in my collection looks like this: {...
user3351236's user avatar
  • 2,538
0 votes
1 answer
121 views

I have been struggling with this error for 2 weeks. Project setup is basically simple: docker-compose for building app, redis and mariadb containers nginx on production server for serving app and ...
Nurbek's user avatar
  • 1
1 vote
1 answer
96 views

I have created the UserResource in Laravel's Filament but I get the following on email TextInput when attempting to update a user. Illuminate\Contracts\Container\BindingResolutionException An attempt ...
deviloper's user avatar
  • 7,252
0 votes
0 answers
78 views

I am developing a Laravel 12 API app with Sanctum authentication (SPA). I am facing a behavior in which Laravel is logging the custom exception twice. The custom exception declaration is as follows: ...
RyeBay's user avatar
  • 1
0 votes
0 answers
83 views

I’m working with the Instagram Graph API in a Laravel backend. My goal is to exchange a short-lived Instagram user token for a long-lived token, but it keeps failing with an error in production ...
khuzaima akram's user avatar
0 votes
1 answer
324 views

I have a new laptop and have done a first install of PHP and Composer on it. I've executed these two commands from the terminal in VS Code: composer create-project laravel/laravel project001 php ...
RhinoCan's user avatar
0 votes
1 answer
94 views

I have a Laravel application originally developed in Laravel 10, but I have since upgraded the application to Laravel 12. One of the changes starting in Laravel 11 is that custom service providers are ...
Phil Birnie's user avatar
  • 1,134
3 votes
0 answers
136 views

I'm facing an issue while deploying code to my production server using GitHub Actions (CI/CD). I have 3 environments: dev, staging, and production. On the dev server, migrations run fine because ...
Mustafa Ahmad's user avatar
0 votes
0 answers
34 views

In Spatie Media Library Plugin every thing works fine and I can upload images to s3 bucket but Files are not being loaded when on edit page, the image container remain loading and does not display the ...
GamaRay 's user avatar
0 votes
0 answers
29 views

I’m using Filament in my Laravel application. In one form, I’m using Tabs to organize different groups of fields. For example, my form schema looks like this: ->schema([ Tabs::make('Tabs') ...
Luiz Davi Mendes's user avatar
1 vote
0 answers
161 views

I'm quite new to Laravel. I have basic understanding but that's all. I wanted to create a mini game that required a lobby where player could connect. Each player would be able to see when someone ...
user31589318's user avatar
-1 votes
1 answer
52 views

I am trying to document a Laravel API using l5-swagger (swagger-php). I have a request body where one property is a map of wallet IDs to effective dates, like this in PHP: [ 11 => "2025-12-...
Afshin Hasani's user avatar
0 votes
1 answer
58 views

i have a project in laravel 12 vita, i installed jquery via npm npm install jquery --save-dec. in navbar layout it shoud display the Languages dropdown using mcamara pakage. The problem is the ...
user2419119's user avatar
1 vote
1 answer
62 views

I Am using ckeditor 5 and here is my configuration. which is working good when i first load the page but i click on the submit button and server redirect me on same page this is no longer working here....
Shubham kumar's user avatar
0 votes
0 answers
59 views

I'm using laravel 8 with SESSION_DRIVER=file I have code that run like below, and I have a problem why the recursive not extending the expired time of session? Each process take 30sec, but after ...
Cahya Purnama's user avatar
0 votes
1 answer
49 views

I tried do table with relations with three models Orders, Users and Chats. Model includes with (->with('orders'), ->with('users'), etc). How I can indicate in Backpack column name of relation ...
Alex Cool's user avatar
0 votes
0 answers
64 views

I have installed the latest version and published all the necessary assets. My configuration is that the root folder is public_html and not public folder. So I had to copy all the vendor/views ...
Paul Godard's user avatar
  • 1,151
0 votes
0 answers
124 views

I recently moved to php 8.3 & Laravel 12. Lots of changes... such as image manager. I am struggling to get elfinder to work. composer require barryvdh/laravel-elfinder php artisan elfinder:publish ...
Paul Godard's user avatar
  • 1,151
1 vote
1 answer
102 views

I’m building a real-time location tracking system with: Backend: Laravel 11.45.2 (PHP 8.2.29) Frontend: Flutter Hosting: cPanel So, how should I connect this? Am I approaching it the right way or ...
Manish sahu's user avatar
2 votes
1 answer
158 views

I'm working on a project where I'm trying to implement a model context protocol server for my LLM to use called server-sequential-thinking. I have a chat area where a user can enter a prompt and the ...
aloo_q's user avatar
  • 33
1 vote
0 answers
63 views

I upgraded from laravel 8 to laravel 12 and installed reverb for my chatting app. My app does not subscribe to channel showing me this error { type: 'AuthError', error: 'JSON returned from channel-...
etranz's user avatar
  • 1,313
0 votes
1 answer
176 views

I am new in laravel 12. I have a project in laravel 12. My custom CSS file is completely working in localhost after i run npm run dev, then i run npm run build to upload the project to my own server, ...
user2419119's user avatar
1 vote
0 answers
56 views

I’m developing a dashboard with Laravel and Filament 4. I have a section that contains KPIs. These KPIs are Stat classe from StatsOverviewWidgets. On these KPIs, I want to display a chart to show the ...
Gaël's user avatar
  • 11
0 votes
0 answers
56 views

In my Laravel 12 application. This code deletes entire set of logs (related to that app) without skipping: $app->logs()->orderBy('timestamp_ms', 'desc')->skip(2)->delete(); While this ...
Junaid's user avatar
  • 488
0 votes
0 answers
141 views

I am using the Herd application on Windows computer for working multiple php version applications and I’m having trouble every time with the HerdHelper service when i stop and start the services. When ...
S. Narthanan's user avatar
1 vote
0 answers
67 views

When I start the server, I get this error. php artisan serve --host=0.0.0.0 --port=8001 Starting Laravel development server: http://0.0.0.0:8001 [Sat Sep 20 08:30:14 2025] Failed to listen on 0.0.0....
S. Narthanan's user avatar
0 votes
1 answer
59 views

I am trying to update data with where condition. I am trying to get the where condition of update statement from the select statement. But in this case the data is not updated. public function update(...
user4221591's user avatar
  • 2,236