Hi Good I am creating a system of educational administration, it turns out that I have created the module to enter notes to the students
the problem is that the way to enter the notes is one by one and now I need to enter the notes in a massive way (to all students of a subject). Someone could help me please, I'm just starting with laravel and I know the basics. Any guide or tutorial that is helpful. Thanks in advance.
I'm used to inserting data like you see in the image one by one, the classic crud and its table in which in each row you have data and in the end Edit or Delete operations that are easy to perform because in that field you receive the $ id.
What I need now is to insert several data at the same time to many users who in this case are students, something like this:
driver to add rating to one
public function agregarCalificacion($id, $idasi)
{
$alumno = Alumno::find($id);
$asignatura = Asignatura::find($idasi);
return view('agregar/calificacion')->with('alumno',$alumno)->with('asignatura',$asignatura);
}