Я пытаюсь сделать, так чтобы при нажатии на копку "добавить" в базу данных в столбце "number" к последней цифре произошло прибавление +1. Например
00001
00002
и т.д
00009
00010
Кнопка "добавить"
Add() {
axios.post('/api/protocols', {
id: this.id,
number: this.number,
name_organization_reg: this.title,
date_from_reg: this.date_from_reg,
date_before_reg: this.date_before_reg,
object_protocol_reg: this.object_protocol_reg,
full_protocol_reg: this.full_protocol_reg,
note_reg: this.note_reg,
user_id_record: this.user_id_record,
dogovor_id: this.dogovor_id,
})
.then(res => {
this.id = null
this.num_contract_reg = null
this.name_organization_reg = null
this.date_from_reg = null
this.date_before_reg = null
this.object_protocol_reg = null
this.full_protocol_reg = null
this.note_reg = null
})
})
},