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)
});
});