I\'m using Laravel 5.7 & VueJs 2.5.* ...
I\'m using a single Bootstrap Model to create as well as edit my TicketInvoice &a
In your editModel method add these lines :
$("#addNewTicketInvoice").modal("show");
this.form.fill(ticketInvoice);
this.form.ticketInvoiceItems=ticketInvoice.ticket_invoice_items;
this.form.ticketInvoiceItems will be an object to loop through its values you should use
Object.values(this.form.ticketInvoiceItems).forEach(....