Use Illuminate\Http\Request;
public function registerAStudent(Request $request)
{
Student::Create($request->all());
}
我想将一行上传到数据库表。 表单数据存储在请求变量中并使用学生模型。 但无法更新数据库我遇到以下错误:
ErrorException(E_RECOVERABLE_ERROR)HELP参数1传递给 AdminController :: registerAStudent()必须是。的实例 照亮\ Http \ Request,没有给出
请给我一个正确的方法。