All Questions
2,270
questions
0
votes
0
answers
39
views
popen/Process() Laravel Function not working after switching to HTTPS in IIS
In the front (VUE), users can specify a text editor in the UI to edit/view specific files. When a button is clicked e.g. 'Edit' Button, the backend will retrieve the editor from the database and will ...
1
vote
0
answers
52
views
Keycloak disconnect after refresh page 2024
I have already check and found question/response about my problem, but each time solution is the same. not working for me.
I have a Laravel 10 program with Vue 3 Front-End in the same project.
I use ...
0
votes
1
answer
69
views
Vue JS - Live running time elapsed from a date
Currently I have a time elapsed displayed on my blade file. However to see the updated time, I need to refresh everytime. I would like to display a dynamic time lapsed. Is there a way to do it?
My ...
0
votes
1
answer
43
views
Cookie not store to Vue app from Laravel app
I wanna ask something about how to get the cookie from backend Laravel app (in this moment I already set the token and ready store to my Vue app) to frontend Vue app, so I have been tried every single ...
0
votes
1
answer
43
views
vue js user state management is not working properly on vue js 3
working with Laravel 10 and Vue js 3 with vuex 4. I have following mainapp.vue file specially manage for menu items as well.
<template>
<div>
<div v-if="$store.state.user&...
0
votes
1
answer
48
views
How properly retrieve data from third party api Freshdesk?
I have an issue with retrieving data from the Freshdesk Developers API. I'm trying to return tickets that do not yet have a purchase assigned in our system, based on certain filters. When I output the ...
0
votes
0
answers
52
views
Object value is changed during the request to the backend
I hope you can help me, because I couldn't find a solution to my problem. I work with Vue.js in the frontend and Laravel in the backend. When sending a POST request, the following problem occurs:
...
0
votes
2
answers
66
views
Passing properties to an Inertia Vue page for Laravel Fortify's register view
I'm working on a web app that's using Laravel 10, Vue 3, and Inertia. (I'm new to all of these, btw) Laravel is using Fortify for a lot of features, including new user registration. I've been tasked ...
0
votes
2
answers
164
views
Consume API endpoint from Laravel + Inertia App
I have an App created with Laravel with InertiaJS and VueJS. It is set with all the Jetstream scaffolding for the Authentication, everything from the auth is handled by jetstream and inertia.
The ...
0
votes
0
answers
44
views
how can I fix this routing issue in Apache?
I have an issue about my php and vue js project. When I have this .htaccess file configuration:
RewriteEngine On
# Deliver the folder or file directly if it exists on the server
RewriteCond %{...
1
vote
0
answers
37
views
Unable to save Tag name on Laravel and Vue Js Project
working with Laravel 10 and Vue Js 3 and I need save Tag Name on the table. I have following AdminController
public function addTag(Request $request){
return Tag::create([
'tagName'...
0
votes
2
answers
100
views
"Hello" app on Laravel / Homestead with Vue and Vite gives a CORS error in the browser console
Laravel Framework 11.20.0
@vitejs/[email protected]
vite.config.js:
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
...
1
vote
1
answer
125
views
How can I prevent Navigate forward?
I currently have a beforeunload event handler which exists when a form is dirty. it correctly blocks page a "Refresh" and navigating "Back", but navigate "Forward" is not ...
0
votes
0
answers
116
views
Inertiajs & Vue Component Library
I recently embarked on creating a custom component library in Vue 3, driven by the desire to repurpose some meticulously crafted UI components from a previous project I developed using the Laravel + ...
1
vote
0
answers
69
views
Laravel 11 / Vue - 404 not found when force deleting a soft deleted model via route model binding and utilising destroy()
When I am trying to forceDelete() a soft deleted model through route model binding I am getting 404 not found. This only happens when force deleting a model and not when restoring or soft deleting. I ...