$page->hasFiles() Checks if the Files collection has any files kirby/src/Cms/HasFiles.php#L156 $page->hasFiles(): bool Return type bool Parent class Kirby\Cms\Page Example <?php echo $page->hasFiles(); //will echo 1 if true, nothing if false if($page->hasFiles()) { $files = $page->files() } ?>