UnexpectedValueException响应内容必须是实现__toString()的字符串或对象,给定“对象”

时间:2019-05-30 07:31:56

标签: laravel-5.4

当我提交表格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;
       }

任何人都可以帮助我为什么会收到该错误

0 个答案:

没有答案