Answers for "Modal Edit Specific/Same table row, where button is"

PHP
0

Modal Edit Specific/Same table row, where button is

// PHP LARAVEL
// LINK TO MODAL. href and data-target(links to modal id) is most important here
<a 
	href="{{ route('admin.customers.edit', $id) }}" 
  	data-hover="tooltip" 
	data-placement="top" 
  	data-target="#modal-edit-customers{{ $id }}" 
 	data-toggle="modal" 
  	id="modal-edit" 
  	title="Edit">
</a>

// MODAL
<div class="modal" id="modal-edit-customers{{ $id }}">
 // modal content
</div>
Posted by: Guest on August-20-2021

Code answers related to "Modal Edit Specific/Same table row, where button is"

Browse Popular Code Answers by Language