Carbon.php The separation symbol could not be found Data missing
问题 First, I retrieve all the records, //get inventory items $inv = inventory::all(); and then I loop on the retrieved records and modify the created_at and updated_at data to make it more human readable date. foreach($inv as $i){ $i->created_at = date("M d, Y",strtotime($i->created_at)); $i->updated_at = date("M d, Y",strtotime($i->updated_at)); } but it returns me this error, InvalidArgumentException in Carbon.php line 425: Unexpected data found. Unexpected data found. The separation symbol