public static function fromArray($data) { $collection = new static(); foreach ($data as $key => $value) { $collection->items[$key] = Organisation::fromArray($value); } return $collection; }