Get the UUID from multiple images?

With this i get all the UUIDS:

    $content = $page->content()->image()->toFiles();

    $uuids = \[\];



    foreach ($content as $uuid) {

        $uuids\[\] = $uuid->uuid();

    }



    $uuids = implode(",", $uuids);
1 Like