Reputation: 183
how can i get the ID or Name Field then append it to Textbox, Please Correct me if i'm approaching this in the wrong way.
$(document).ready(function(){
var students = {!! json_encode($students->toArray()) !!};
//This Part Im Trying to get.
var name=$(students).val(name);
var id=$(students).val(id);
console.log(name);
});
Controller:
$students=Student::all()->take(5);
return view('Examples.levels',compact('students'));
image below is the result if i use console.log(students)
Updated Version
$(document).ready(function(){
var students = {!! json_encode($students->toArray()) !!};
students.forEach(function(student) {
$('.content').append(
`<input name="name[]" value=`+student.name+`>`
);
console.log(student.name)
});
});
Upvotes: 0
Views: 63
Reputation: 934
Try this one. it will append with value.
students.forEach(function(student) {
$('.content').append(
`<input name="name[]" value="`+student.name+`">`
);
});
Upvotes: 1
Reputation: 3527
You should iterate over a students array like so:
students.forEach(function(student) {
console.log(student.name);
console.log(student.id);
});
Upvotes: 0