How to make a Edit after making the Create
问题 Im doing a crud for my Vue/Laravel application, my add button is working fine but im having trouble making work my edit/update button. I dont get any erros from backend or frontend, just dont work This is my code: Frontend: async addDespesa() { let uri = "api/despesas"; const response = await axios.post(uri, this.despesa).then((response) => { this.despesas.push({ des: this.despesa.des, valr: this.despesa.valr, stt: this.despesa.stt, vencc: this.despesa.vencc, emiss: this.despesa.emiss, });