Skip to content

Instantly share code, notes, and snippets.

@adrexia
Created May 13, 2020 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrexia/67495f7088cd39470a397105031d4c32 to your computer and use it in GitHub Desktop.
Save adrexia/67495f7088cd39470a397105031d4c32 to your computer and use it in GitHub Desktop.
Merge a ViewObject or a ArrayDataObject with a DataList
$list = SomeObject::get()->toArray();
$singleViewObject = SingleViewObject::create([
'Title' => 'Hello World'
]);
$result = array_merge($list, [$singleViewObject]);
return ArrayList::create($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment