modal edit specific 2fsame table row 2c where button is

Solutions on MaxInterview for modal edit specific 2fsame table row 2c where button is by the best coders in the world

showing results for - "modal edit specific 2fsame table row 2c where button is"
Gabriela
03 Oct 2020
1// PHP LARAVEL
2// LINK TO MODAL. href and data-target(links to modal id) is most important here
3<a 
4	href="{{ route('admin.customers.edit', $id) }}" 
5  	data-hover="tooltip" 
6	data-placement="top" 
7  	data-target="#modal-edit-customers{{ $id }}" 
8 	data-toggle="modal" 
9  	id="modal-edit" 
10  	title="Edit">
11</a>
12
13// MODAL
14<div class="modal" id="modal-edit-customers{{ $id }}">
15 // modal content
16</div>
17
similar questions