Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
-2 votes
0 answers
17 views

Laravel with Inertia.js and Vue 3 performance issue when disabling hardware acceleration

hello I have a problem with Laravel Inertia with Vue 3 the problem is that I'm having high CPU usage when launching the Laravel server although I don't have much content on the website yet I have only ...
MaherRemitaDZ's user avatar
0 votes
0 answers
29 views

Is there a way to prevent the output of http headers from appearing in the content of a csv file?

I'm currently working in a Laravel Project with a Laravel Jetstream scaffolding with Inertia js and Vue 3. Everything is working as expected but now I need to make a downloadable CSV file. At first I ...
Dovahkiin's user avatar
0 votes
0 answers
17 views

I cant update and image with put method on Laravel inertiajs

I have three files here: Edit.vue, FormComponent, and a resource method that allows only PUT and PATCH. When I submit without an image, the update method works, but when I attach an image in the form, ...
Mostafizur Rahman's user avatar
1 vote
1 answer
136 views

Use two different layouts in Laravel inertia.js and vue 3

I'm using laravel 10 for some projects. I need to keep two different layouts and I separating from app.js and customer.js and keep one blade file. This is app.blade.php <!DOCTYPE html> <html ...
Madawa Viraj's user avatar
0 votes
1 answer
68 views

Laravel Vue Update page prop of user data After axios post

I have a custom column inside by user's table called avail_balance. When making a transaction, I want the available balance to update on the frontened WITHOUT having to reload the page. So after an ...
Antman's user avatar
  • 1
1 vote
1 answer
46 views

Storing checked box data to the database in laravel inertia vue js

I have this form that i'm building for a CMS website which is displaying some information stored in the database. I want a user to be able to select for example on the buttons section which buttons ...
Mafumu's user avatar
  • 15
-1 votes
1 answer
33 views

Upload image with PUT does not work in Production (digital ocean) - Laravel and vue

I have a weird problem: Uploading a image in local WORKS perfectly but when I upload to Production in digital ocean it does NOT. Iam using laravel 11, vue 3 and InertiaJS What happens in Production ...
Marco Feregrino's user avatar
0 votes
1 answer
39 views

Vuejs. Cannot set properties of undefined (setting) [duplicate]

data() { return { qty_to_order: null, } }, methods: { showQty(product_id) { this.carts.filter(function(cart) { if (cart.product_id =...
Stnslv Logit's user avatar
0 votes
0 answers
89 views

filter by laravel inertia vue 3

I need to remove or hide query params when I filter data. const filterCategory = useForm({ categories: "" }); const filterUnit = useForm({ unit: "" }); watch( () => ...
Freya Premium's user avatar
1 vote
1 answer
179 views

Dropdown menu close when open another one

I'm new in Vue.js, I make CRUD project for my coursework. I'm having trouble with dropdown menu behavior. Can somebody help me? I want : dropdown menu without active state automatic closed (collapse)...
Reynaldo's user avatar
0 votes
0 answers
87 views

How do i get vuetify to work with Laravel breeze (Laravel/Vue3/Inertia.js)

It is my first time doing a project using Laravel breeze (Laravel10/Vue3/inertia.js). I have done the back-end and front-end set-up and everything looks good till then. However, I installed Vuetify3.5 ...
Flexi's user avatar
  • 195
1 vote
1 answer
312 views

How to implement 2FA in Laravel with Inertia.js and Vue 3?

I am working on a project using Laravel, Inertia.js, and Vue 3, and I want to implement two-factor authentication (2FA) for user login. My setup includes a MySQL database with a users table that ...
Muhammad Umaair's user avatar
1 vote
1 answer
450 views

Cannot display image in Vue.js + Laravel + Inertia

I need help with displaying images within a Vue.js component in my project, which is integrated with Laravel and Inertia. I have a component called "Index.vue" located at the route "...
Ubaldo Villaba's user avatar
0 votes
1 answer
131 views

vueUse useIntersectionObserver and rootMargin, triggering well before element is within range

I'm really confused what I'm doing wrong here. I'm trying to implement an infinitescroll that will load new items when the bottom edge of the target element is within 200px of the bottom of the ...
Ben's user avatar
  • 343
-1 votes
1 answer
52 views

How make tabs logic

I have laravel10 prject, with vue3 and inertia I have routers in web.php: Route::resources([ 'roles' => RoleController::class, 'users' => UserController::class, ]); For example ...
sveta ivanova's user avatar

15 30 50 per page
1
2 3 4 5
18