<?php $obj = (object) [ 'foo' => 'bar', 'foo2' => 'bar2' ]; $coll = collect($obj); var_dump($coll[0]); // returns object // but what about... // $coll->foo // Or dump($coll[0]) .. // The end goal is object in ... do collection stuff on it ... object out. // This is not possible without ->toArray and then (object) on that array.
You have javascript disabled. You will not be able to edit any code.