Skip to content

Instantly share code, notes, and snippets.

@eaponiente
Created February 20, 2018 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eaponiente/5415c1528daace476014fab88ea37188 to your computer and use it in GitHub Desktop.
Save eaponiente/5415c1528daace476014fab88ea37188 to your computer and use it in GitHub Desktop.
var html = '<input type="text" name="first_name[]" />';
html += '<input type="text" name="last_name[]" />';
$('#div').append(html);
//
to get logic
$data = request()->input('first_name');
foreach($data as $key => $v) {
// pwde na nimo kwaon ang last name
$lastname = request()->input('last_name')[$key]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment