当我提交表格iam时遇到这样的错误
"UnexpectedValueException
The Response content must be a string or object implementing __toString(), "object" given."
我的控制者:
public function Data(Request $request)
{
$Datains = Test::tset($request);
if($Datains) {
return redirect(env('ex'));
}
}
型号:
public static function tset($param)
{
$insertSpecs = DB::table('tes')->
insertGetId(
['Name'=> $param['name'],'value'=>$param['value'],'status'=>1,'created_at'=>date('Y-m-d h:i:s'),'updated_at'=>date('Y-m-d h:i:s')]);
return true;
}
任何人都可以帮助我为什么会收到该错误