有时 laravel 设置日期 1970 当值为 null 时,是否可以将值保存为 NULL 而不是 01-01-1970?
'start_date' => date('Y-m-d', strtotime($request->input('start_date'))),
'end_date' => $request->has('end_date') ? date('Y-m-d', strtotime($request->input('end_date'))) : NULL,
该代码不起作用。
我怎样才能解决它?
潇湘沐
慕工程0101907
智慧大石