you can convert your array to the string with json_encode
and then save it, and when you want to use it you need to decode it with json_decode
, that is a solution that can help you
So convert this
$iitems=$request->input('parcel_items', []);
$parcel->update(['parcel_items_sku' => $iitems]);
To this
$iitems=$request->input('parcel_items', []);
$parcel->update(['parcel_items_sku' => json_encode($iitems)]);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…