如果$request->SN无效或为空,我会收到如下错误。
试图获取非对象的属性
Ticket::create([
'user_id' => Laptop::where('SN', $request->SN)->first()->user_id,
'laptop_id' => Laptop::where('SN', $request->SN)->first()->id,
'title' => $request->title,
'body' => $request->body,
'laptop_ww' => $request->laptop_ww
]);
如何显示自定义错误而不是此异常?默认情况下,它会转到状态为 500 的错误页面。
慕雪6442864
牧羊人nacy