enter image description hereLaravel Form Check Validation, I tried to check form validation numerous time but showing this same problem in localhost.
Ist of all, I created a check validation function that inside have one parameter and array function in StudentController. Later, I created a post form for checking the required validation.
public function store(Request $request) {
//Insert data into Student Table
$student = new Student;
$student->name = $request->name;
$student->registration_id = $request->registration_id;
$student->department_name = $request->department_name;
$student->info = $request->info;
$student->save();
return redirect()->route('index');
}
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire