skip to Main Content

Inertia redirect issue in Laravel with Vue

I have a modal in vue where I call this function const createChat = async (id) =>{ try { const response = await axios.post('/pdf-chat/create-chat', { name: name.value, pdfId: id, }); dialogVisible.value = false; console.log(response) } catch (error) { console.error('Error sending…

VIEW QUESTION

Laravel – Inertia Responses

I'm using Inertia with Vue3. I did not understand clearly the responses. If someone make this example clear for me, I believe I'll understand the logic. Sorry if it's a silly question. I have a simple post form: title description…

VIEW QUESTION
Back To Top
Search